Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

GREP Expression

New Here ,
Jan 13, 2020 Jan 13, 2020

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!

TOPICS
How to , Type
2.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jan 13, 2020 Jan 13, 2020

Hi Natesroom:

 

Try

Figure\s\d+\.\d+

 

~Barb

 

Screen Shot 2020-01-13 at 11.22.05 AM.png

Translate
Community Expert ,
Jan 13, 2020 Jan 13, 2020

Hi Natesroom:

 

Try

Figure\s\d+\.\d+

 

~Barb

 

Screen Shot 2020-01-13 at 11.22.05 AM.png

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 13, 2020 Jan 13, 2020

thank u very much can you explain the expression also?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 13, 2020 Jan 13, 2020
LATEST

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines