is now part of CreativePro.com!

Tip of the Week: Making Space Characters Visible in GREP

1

This InDesign tip on making space characters visible in GREP was sent to Tip of the Week email subscribers on September 14, 2017.

InDesignSecrets Tip of the Week

Sign up now and every week you’ll get a new tip, keyboard shortcut, and roundups of new articles, plus exclusive deals sent right to your Inbox!

Just scroll down to the bottom of this page, enter your email address, and click Go! We’ll take care of the rest. Now, on with the tip!


Space characters are often not so easy to spot in GREP expressions. To make them visible in your code, use \x{0020}, which is the Unicode notation for the space character. Or use the code \s, which stands for any white space (including paragraph breaks and tabs).

For example, set[-\s]?up has the same meaning as set[- ]?up but is much clearer since someone looking at the code doesn’t have to guess if there’s a space there, or what is meant by the invisible space after the dash.

Peter Kahrel is the author of several eBooks on InDesign and scripting, including GREP in InDesign, published by CreativePro Network. He also wrote the feature article on "Getting a Grip on GREP" in InDesign Magazine Issue 59.
  • Petru Strîmbeanu says:

    Also you can use \h for any horizontal spaces.

  • >