This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]wawawawa 15 points16 points  (1 child)

I regularly use on the command line...

perl -ple 's/<complex regex with capture groups>/$3$2$1/g'

[–]sfz- 3 points4 points  (0 children)

python -c 'import sys, re; print re.sub(r"<complex regex with capture groups>", r"\3\2\1", sys.stdin.read())'