Skip to main content

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)

0684Q00000ArK5OQAV.png

 

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)

0684Q00000ArK5OQAV.png

 

Alternatively this string expression returns the same result.

@ReplaceRegEx(@Value(Before),"(?<=\d)\s+(?=\d)","")

 

TQ so much it is working


Reply