In article <[EMAIL PROTECTED]>,
Amir Karger <[EMAIL PROTECTED]> writes:
> C:\>perl -e "$_='abcde';/./;print "$'",/../,$'
> cde1cde
>
> Is this another 5.6.1'ism (Looks like I'll have to upgrade to 5.8 for
> "@+" in any case) or was Jasper's solution using some slightly more
> mystical quoti
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