I\'m looking to do search replace with regular expressions in Sublime Text 2. The documentation on this is rather anemic. Specifically, I want to do a replace on groups, so
Note that if you use more than 9 capture groups you have to use the syntax ${10}.
${10}
$10 or \10 or \{10} will not work.
$10
\10
\{10}