How do I append a literal digit (e.g., "0") after a regex capture group in JMP?
I'm using regular expressions in JMP Recode's "Replace String" function to transform strings like "en127" into "1270". My approach is to capture the two digits using:
Find: en(\d+)
But when I try to use:
Replace: \10
…it is interpreted as a reference to group 10, not group 1 followed by a literal "0".
Is there a way in JMP to append a literal "0" (or any literal digit) after a capture...