GREP expression help
Hi. I need help resolving a GREP issue. I need to apply superscript to reference numbers and the commas or endashes within, but NOT the commas separating the names. For example:
Karen Smith4, Frank Jones2–5, Johnboy Walton12, Harry Bottom10,11.
I have this
\d[–, \d]*?
And it recognises the name separating commas, but not the ones needed between the reference numbers (2–5 or 10,11).

This is for a scientific application, and unfortunately, I must keep the style (commas and endashes), not switch them out for hyphens or semicolons.
