Does Actipro support tagged expressions?
1. Use the following text:
String blah = 'sdfsdf';
2. Find: '([^']*)'
3. Replace: @"\1"
I expect the text to change to:
String blah = @"sdfsdf";
...or is there some other way to denote tagged expressions on the replace? I've seen other places use ^.