How to remove spaces in between numeric values.
like below
BeforeI need like this0 909a 1 2 ga 12 ga125a125a 1 ba 1 ba 12 5 ba 125 b
How to remove spaces in between numeric values.
like below
BeforeI need like this0 909a 1 2 ga 12 ga125a125a 1 ba 1 ba 12 5 ba 125 b
Hi @tomjerry.vl, the StringReplacer with this Regular Expression does the trick.
(?<=\d)\s+(?=\d)
Alternatively this string expression returns the same result.
@ReplaceRegEx(@Value(Before),"(?<=\d)\s+(?=\d)","")
Hi @tomjerry.vl, the StringReplacer with this Regular Expression does the trick.
(?<=\d)\s+(?=\d)
Alternatively this string expression returns the same result.
@ReplaceRegEx(@Value(Before),"(?<=\d)\s+(?=\d)","")
TQ so much it is working