Hi,
Been twisting my head tring to delete multiple spaces in a string and can't figuire it out..
Tried:
DELCHR(String, '=', ' ');
Which I thought would work... tried searching on STRPOS and then getting the multiple spaces out... nah that didn't work as it just finds the first instance.
Any ideas or help appreciated!
Thanks
P
0
Comments
Pretend the 'aa' is multiple spaces. And I typed that from memory, so it might be a little off. I found that I couldn't do a DELCHR because it would delete all the spaces, and I still wanted to leave one. Searching for two consecutive spaces and using the DELSTR function to delete one of them.
That works a treat! =D>