in reply to Re: I need to remove all instances of a particular string.in thread I need to remove all instances of a particular string.
my $qmstring = quotemeta('<TR>...etc.'); $somestring =~ s/$qmstring//g; [download]