GREP to apply subscript to uppercase single character followed by a single digit
I'm sure to have already asked this but I cannot find it anywhere, nor on search engines.
In a music-related text, I need to show the octave of a note with a subscript digit.
So, the middle-C on the piano would be C3 with 3 being subscripted.
I am trying this GREP but it's not working:
(?<=[A-G])\d
This should be positive lookbehind for uppercase letters A to G, then applying the character style to the single digit following it.
Any idea why this may not be working?
Thank you!


