Quote:
Originally Posted by Beathan
For regex I used:
F: [a-zA-Z]-[a-zA-Z]
R:
but can not manage the Replace string
|
( ) are the capture zones, so surround each zone with ( ) like did earlier (you can include literals as I did)
replace:
\1 \2
\1 place the first zone
\2 place the second (again, you can include literals actual text)
\2 \1 flips the two captures