I have some text like (1, 15) and I want to swap the two digits and subtract one from each. My regex in the search window is as such
\((\d+)\,\ +(\d+)\)
and my replace line is
($2, $1)
What this does is just put in the line literally, without replacing the $n references.
Exasperated, please help.