|
From: Zurd <zu...@gm...> - 2012-02-07 20:24:02
|
Hi, $1 and $2 (which is called backreference in regular expressions) never worked. Or should I say, I've never been able to make it work. If you go into Help -> Contents, there's a note saying : "Backreferences with Regular expression cannot be use as $1 is considered a Perl variable." There's probably a way to make it work, if you find it, tell us ;-) Still you can always achieve your desired results by renaming 2 times instead. Or for a simple backreference regex, maybe just do it in a command line. On Tue, Feb 7, 2012 at 6:34 AM, Gabor Pinter <and...@gm...> wrote: > Hi, > Very nice program, I use it a lot. > Here is my question: is it possible to I capture groups? > Something like: > AAA_bbb -> bbb_AAA > / (.*) _ (.*) / $2 $1 / # extra spaces added for readability > > Even if I check regexes I the replacement interpreted literally. > (I guess special characters are escaped during runtime). > > Any ideas? > > > ------------------------------------------------------------------------------ > Keep Your Developer Skills Current with LearnDevNow! > The most comprehensive online learning library for Microsoft developers > is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, > Metro Style Apps, more. Free future releases when you subscribe now! > http://p.sf.net/sfu/learndevnow-d2d > _______________________________________________ > Gprename-users mailing list > Gpr...@li... > https://lists.sourceforge.net/lists/listinfo/gprename-users > |