Copy link to clipboard
Copied
Not sure if there is a subforum for this... I have studied some GREP but i am not sure what to do here.
Basically I want to apply a grep in my Body Copy paragraph style that looks for the word and number Figure 1.1 or Figure 1.2 so on and apply a Character style so that its a formated so it stands out. The GREP has to account for the fact that the number variable could change maybe 1.12 or 2.14 up to 9.99. I don't think i will have more then double digits after the decimal.
Thanks for your help!
Hi Natesroom:
Try
Figure\s\d+\.\d+
~Barb
Copy link to clipboard
Copied
Hi Natesroom:
Try
Figure\s\d+\.\d+
~Barb
Copy link to clipboard
Copied
thank u very much can you explain the expression also?
Copy link to clipboard
Copied
Figure\s\d+\.\d+
Figure match the word "Figure"
\s match the space
\d+ match one or more digits
\. match the period
\d+ match one or more digits
~Barb
Find more inspiration, events, and resources on the new Adobe Community
Explore Now