Skip to main content
JonathanArias
Legend
January 26, 2022
Answered

GREP QUESTION

  • January 26, 2022
  • 1 reply
  • 381 views

Hello folks:

I am in search of a GREP that will do the following:

 

I have a word document where the writer bolds the word "Abstract" and the abstract number that comes after it. see below. how may i tell indesing to make the word "Abstract" and "whater numbes come after it" bold. the number after "Abstract" may have 1, 2, 3, 4, 5 or more digits. ex: Abstract 396, Abstract 1553 or Abstract 68

 

thanks!

 

 

This topic has been closed for replies.
Correct answer SJRiegel

This could be done in a GREP style. Set up a bold character style, and set your grep to 

Apply Style: Bold To Abstract \d+

In this example I have applied bold and red

1 reply

SJRiegelCorrect answer
Legend
January 26, 2022

This could be done in a GREP style. Set up a bold character style, and set your grep to 

Apply Style: Bold To Abstract \d+

In this example I have applied bold and red

JonathanArias
Legend
January 26, 2022

that did it!

 

thank you