Help with replace expression
-
Hi guys,
I would like to know how to search for numbers like this 06446 and turn them into this 06,446
Thanks a lot.
-
Well, if your numbers always look exactly like your example, then the following should work:
find:
(\d\d)(\d{3})
repl:${1},${2}
search mode: regular expression
-
Thank you so much