At 01:10 PM 12/6/2005 -0800, $Bill Luebkert wrote:
>ÐÑÑем ÐвеÑиÑÑн wrote:
>
>> English is not my native, so i'd be pleased if you explain me the point :)
>
>He probably had in mind something of a sexual nature. :)
>
>>>I wanted to make a joke about the subject, but every time I try su
Артем Аветисян wrote:
> English is not my native, so i'd be pleased if you explain me the point :)
He probably had in mind something of a sexual nature. :)
>>I wanted to make a joke about the subject, but every time I try such a
>>thing, it never comes out right. Sigh.
English is not my native, so i'd be pleased if you explain me the point :)
>
> I wanted to make a joke about the subject, but every time I try such a
> thing, it never comes out right. Sigh.
>
> -- Craig
>
>
> ---
> avast! Antivirus: Outbound message clean.
> Virus Database (VPS): 0549-2, 12/
gt;
> my $str = 'lazha';
> my $pattern = 'la(zh)(a)';
> my $replacement = '$1o"p$2';
> eval "\$str =~ s/$pattern/$replacement/;";
> print$str;
> __END__
> zho"pa
> - Original Message -
> From: "Артем Аветисян&
I wanted to make a joke about the subject, but every time I try such a
thing, it never comes out right. Sigh.
-- Craig
---
avast! Antivirus: Outbound message clean.
Virus Database (VPS): 0549-2, 12/06/2005
Tested on: 12/6/2005 12:54:08 PM
avast! - copyright (c) 1988-2004 ALWIL Software.
http:/
At 06:47 PM 12/6/2005 +0300,
>my $str = 'lazha';
>my $pattern = 'la(zh)(a)';
>my $replacement = '$1o"p$2';
>$str =~ s/$pattern/$replacement/;
>print $str;
>I want zho"pa to be printed. So far it is obviously '$1o"p$2'. eval (as well
I think ur going about this the wrong way. I'm guessing that u
Àðòåì Àâåòèñÿí <> wrote:
: use strict;
: my $str = 'lazha';
: my $pattern = 'la(zh)(a)';
: my $replacement = '$1o"p$2';
: $str =~ s/$pattern/$replacement/;
: print $str;
: __END__
:
: I want
:
: zho"pa
my $replacement = "$1o\"p$2";
# or:
my $replacement = qq($1o"p$2); # You can read more ab
Hi, all.
use strict;
my $str = 'lazha';
my $pattern = 'la(zh)(a)';
my $replacement = '$1o"p$2';
$str =~ s/$pattern/$replacement/;
print $str;
__END__
I want
zho"pa
to be printed. So far it is obviously '$1o"p$2'. eval (as well as s///ee)
doesn't seem to be helpful.
More generally, I want to k