Re:slash issue on a regex

2001-11-22 Thread Jeff 'japhy' Pinyan
On Nov 22, Jorge Goncalvez said: >$buf=~(/d:/dhs3mgr/e1401/dhs3linux/fr/cpiofile/) > >but it didn't work.How can i do to escape the /. Well, escaping is done with \, but if you do that, you'll end up having "leaning toothpick syndrome": $buf =~ /d:\/dhs3mgr\/e1401\/dhs3linux\/fr\/cpiofile/;

Re:slash issue on a regex

2001-11-22 Thread Jorge Goncalvez
Hi, I have this: $buf=~(/d:/dhs3mgr/e1401/dhs3linux/fr/cpiofile/) but it didn't work.How can i do to escape the /. Thanks. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]