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?
Search found 1 match
- Wed Jul 02, 2008 5:12 pm
- Forum: Advanced Find and Replace
- Topic: back-references
- Replies: 0
- Views: 21154