R
rob merritt
Hi I have a simple problem
hopefully. how would I replace all no numerics using <string name>.regex
if if I have a string like
123456.309.123456
or
123456-307-123456
or
123456 307 123456
all need to be nomalized to
123456307123456
so if
bn="123456-307-123456"
bn=bn.regex([0-9])
any ideas
hopefully. how would I replace all no numerics using <string name>.regex
if if I have a string like
123456.309.123456
or
123456-307-123456
or
123456 307 123456
all need to be nomalized to
123456307123456
so if
bn="123456-307-123456"
bn=bn.regex([0-9])
any ideas