- May
- 13,117
- 180
Does anyone know if it's possible to specify SED-style back-refs in TPIPE's /replace's replacement string. Below, SED's replacement string "\1" refers to the first parenthesized regular expression found in the target string.
Code:
v:\> echo 1234 | sed -e "s/.\(..\)./\1/g"
23