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
Best answer by takashi
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)","")
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.