Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
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.
@asaan-hamdy
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
(\d\d)(\d{3})
${1},${2}
Thank you so much