Reply To: GREP: How to find the spaces after numbers

Home Page / Forums / General InDesign Topics (CLOSED) / GREP: How to find the spaces after numbers / Reply To: GREP: How to find the spaces after numbers

#85587
Matt Isaac
Participant

^(\d+) Will find any number of digits at the beginning of a paragraph followed by a space. The parenthesis around (\d+) specify that as a “found string.” Replace with $1 will insert the first found string.

This article was last modified on June 9, 2016

Comments (0)

Loading comments...