I have a method that builds up a comma separated list returned as a string.
Unfortunately it sometimes returns stuff like
I tried replace to return single commas e.gCode:Tom,,,,,,Dick,,,,,,Harry
but it only replaces some of them. e.g.Code:Replace (strNames, ",,", ",")
Is there a recursive ReplaceAll function or do I have to write my own?Code:Tom,,,Dick,,,Harry




Reply With Quote