Hello --
I am working on a project and have a challenge that is eluding me. I have concatenated about 7 fields using a comma (,).
1) ,,,,CBC500,,,,CBC501,,
2) ,,,,,CBC100,,,,,
How do I keep a single comma to delineate, but remove any unnecessary commas. So for item 1, I want to see:
CBC500,CBC501
Thanks,
Seth
Solved! Go to Solution.
Ah ha, its because you have whitespace inbetween the comma's - the regex provided only works if the comma's contain no whitespace.
Try this, its not eloquent by any means but it works!
Regex_Replace([Address]," ,","")
Thanks @davidskaife It removed all the commas. Im happy with that for now. But I understood what you meant and you are right about the whitespace. Appreciate your responses.
