Is there a code that replaces all "." with ","?
if a textbox is = .testing.....asdf.
then it will be = ,testing,,,,,asdf,
Thanks!
Printable View
Is there a code that replaces all "." with ","?
if a textbox is = .testing.....asdf.
then it will be = ,testing,,,,,asdf,
Thanks!
textbox = replace(textbox, ".", ",")