Created
May 6, 2021 08:01
-
-
Save yratof/3af9442379a16c464cb8c0570a3b6c69 to your computer and use it in GitHub Desktop.
InDesign GREP to replace thousands separator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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