I have a field string which contain a comma and I change a comma with a space.
I find a comma with the function "INSTRING" but how change a comma ????
The simplest solution would be to use string slicing. Read the help to get full details, but generally you want to do this: FieldString[Position] = ' '
where FieldString is your string and Position is the position returned from INSTRING. If you want to check and replace multiple commas, put in all in a LOOP with a BREAK when INSTRING returns zero(0).
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.