Khairul Azmi [KA], on Tuesday, November 2, 2004 at 17:15 (+0800)
wrote:

KA> $string1="\"email title\"";
KA> $string2='email title';

if you want string2 equal to string1, you have to remove double
quotes. So, you should try:

$string1="\"email title\"";
$string2='email title';

$string1 =~ s/\"//g; #replace all " with nothing (\\)

print "s1 = $string1 \n";
print "s2 = $string2 \n";

But I don't know if is exactly do you want. Helped ?

-- 

 ...m8s, cu l8r, Brano.

[FLR: Flash Lights Randomly]



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to