Answered
GREP for a letter followed by a digit
I'd like to search for the letter T followed by a digit (T1, T2, T3) and then change only the digit to a subscript.
I can search for T(\d) but how to I get it to change the formatting of only the digit?
I'd like to search for the letter T followed by a digit (T1, T2, T3) and then change only the digit to a subscript.
I can search for T(\d) but how to I get it to change the formatting of only the digit?
Use Positive Lookbehind: (?<=T)\d
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.