Feb 172008
Replace a string using regular expressions in Perl
Answer:
The following code demo how to replace a string in Perl,
my $s = 'love foobar';
$s =~ s/love/hate/g;
print $s;
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
Replace a string using regular expressions in Perl
Answer:
The following code demo how to replace a string in Perl,
my $s = 'love foobar';
$s =~ s/love/hate/g;
print $s;