Page 1 of 1

back-references

Posted: Wed Jul 02, 2008 5:12 pm
by ccurry
I am using afr 2.1. I want to convert this string:
abc&&def
to this one:
abc
(and all similar strings with a "&&" in the middle).

I tried the re:
find: ^(.*)&&
replace: $1

expecting to get: abc
but I get abcdef

Am I doing something wrong?