Hello Amir!

[EMAIL PROTECTED] (Amir Karger) wrote:

> C:\>perl -e "$_='abcde';/./;print "$'",/../,$'
> cde1cde

In this case you've confused poor windows with double quotes,
you should escape internal pair:

C:\>perl -e "$_='abcde';/./;print \"$'\",/../,$'
bcde1cde

-- 
Mtv Europe

Reply via email to