Search found 1 match

by ccurry
Wed Jul 02, 2008 5:12 pm
Forum: Advanced Find and Replace
Topic: back-references
Replies: 0
Views: 15381

back-references

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?