thousand separators in Regex Match Autosuggest Provider

Could someone give me the regex pattern and replacement pattern to replace blank thousands separators with commas? That is to say, 15 789 489 with 15,789,489.
Thanks.

Parents Reply
  • I asked you if this was a search and replace and you said yes.  It will not achieve what you're after with the Regex Match AutoSuggest Provider.  I thought you were letting Studio do it's thing and needed to run a search and replace afterwards.

    To do what you want in the regex autosuggest provider I think you'll need to create multiple rules... maybe something like this:

    \b(\d{1,3})\s(\d{1,3})\s(\d{1,3})\s(\d{1,3})\b

    $1,$2,$3,$4

    \b(\d{1,3})\s(\d{1,3})\s(\d{1,3})\b

    $1,$2,$3

    \b(\d{1,3})\s(\d{1,3})\b

    $1,$2

    Maybe someone else has a clever way of doing this in one... would love to know what this would be myself!

    Paul Filkin | RWS Group

    ________________________
    Design your own training!

    You've done the courses and still need to go a little further, or still not clear? 
    Tell us what you need in our Community Solutions Hub

Children