I need to remove commas within a String only when enclosed by quotes.
example:
String a = '123, \'Anders, Jr.\', John, john.anders@company.com,A'
after replacement should be
String a = '123, Anders Jr., John, john.anders@company.com,A'
Can you please give me sample java code to do this?
Thanks much,
Lina
Probably grossly inefficiënt but it seems to work.