Hi,

#I have this string:

my $string = 'vd=root,status=';

#Now, I want to transform it into:

'vd=root;status='

#That is replace the comma(,) between root and status with semicolon (;);


$string =~ s/vd=\w+(,)/;/;
print $string,"\n";

#And it prints:

;status=

Can you tell me why it has ate up vd= as well?
And how to get around with it..


Thanks!







 
____________________________________________________________________________________
Get your own web address.  
Have a HUGE year through Yahoo! Small Business.
http://smallbusiness.yahoo.com/domains/?p=BESTDEAL

Reply via email to