I basically have a data that looks like the below:
6742792667373, 6746172424429, 6749208183021
Basically, I want to remove space between each comma and also remove one value for eg: 6746172424429
What i tried:
I used trim() to remove space
To remove a value 6746172424429 i used remove(6742792667373, 6746172424429, 6749208183021;6746172424429, ) but it was trowing a error. ( screenshot attached below )
If you’re dealing just with the set of values, another way to handle it is to split the string up, remove that value, then put the rest back together, separated by commas: