When converting tests...

2004-12-20 Thread Markus Laire
How should I convert dot, $, ... Some examples: 1# p5: abc =~ /a.c/; (match) 2# p5: a\nc =~ /a.c/; (no match) Equivalent code for '.' would now be '\N'. Still there are tests where I could just leave the dot alone (e.g. all tests where there is no \n in target-string.) In test-1 I could

Re: When converting tests...

2004-12-20 Thread Patrick R. Michaud
On Mon, Dec 20, 2004 at 05:27:37PM +0200, Markus Laire wrote: How should I convert dot, $, ... 1# p5: abc =~ /a.c/; (match) 2# p5: a\nc =~ /a.c/; (no match) Equivalent code for '.' would now be '\N'. Still there are tests where I could just leave the dot alone (e.g. all tests where