Reply To: Build a biblical reference index with GREP

Home Page / Forums / General InDesign Topics (CLOSED) / Build a biblical reference index with GREP / Reply To: Build a biblical reference index with GREP

#54011

Nick,

([,sd]+(.d+)?)?

will match “, 12.3” but stop after the first comma (and the number after that). “?” is zero or one time.

Change to

([,sd]+(.d+)?)*

to accommodate for a verse list of any length; “*” stands for zero or more times.

This article was last modified on November 26, 2009

Comments (0)

Loading comments...