Skip to content

Instantly share code, notes, and snippets.

@yratof
Created May 6, 2021 08:01
Show Gist options
  • Save yratof/3af9442379a16c464cb8c0570a3b6c69 to your computer and use it in GitHub Desktop.
Save yratof/3af9442379a16c464cb8c0570a3b6c69 to your computer and use it in GitHub Desktop.
InDesign GREP to replace thousands separator
GREP thousands comma, replace with space
# https://community.adobe.com/t5/indesign/grep-find-change-decimal-and-thousands/m-p/6130240
Find: (?<=\d)[., ](?=\d\d\d)
Replace: ' ';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment