Skip to main content
Participant
January 4, 2022
Question

GREP command for after a particular letter

  • January 4, 2022
  • 1 reply
  • 252 views

What is the command for (after) 

for example if i want to superscript every letter after a particular letter in same word

lets take the letter N

if i write the word command D should be superscripted

and want to apply it to the whole document

This topic has been closed for replies.

1 reply

Community Expert
January 4, 2022

Hi @Dawat22494003w4vr 

Try grepstyles and use the following grep query to apply the superscript character style.

(?<=N)D

Or if this has to be done across different paragraph styles and not to be done automatically for any new text added then you could also use the Find Grep dialog with the same query.

-Manan

 

-Manan
Participant
January 7, 2022

thanks