Using a general regular expression replacement (for me, I'm doing this through TextMate) is it possible to modify a captured token?
I've essentially got a handful of enums that I want to modify...
CONSTANT get { return 1; }
CONSTANT get { return 2; }
CONSTANT get { return 3; }
What I'd like to do is capture the "return x"...
return [\d]
... but then modify the return value by decrementing by 1
$1-1
Is there anyway to do this purely using regexps?
TIA!
Bob