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;
Related posts:
Post a Comment