in reply to Re: Execute regexp on directory tree
in thread Execute regexp on directory tree
The result semms like using:s/throw "[^"]+"/throw ($1)/
So no substitution using matched values is performed, I guess I need that substitution regexp operator would evaluate the $substitute, whereas now it doesn't and just replaces using literal value. P.S. Anarion's suggestion also didn't work for me:s/throw "[^"]+"/throw (\$1)/
Also literal evaluation.C:\Projects\Config2\9XImage.cpp: throw "Error writing to floppy!"; qq<throw ("$1")>
|
|---|