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.

Um, those '/' characters are going to cause you trouble, you could use a different s/// delimiter, but probably better just to use quotemeta on the string first:
my $qmstring = quotemeta('<TR>...etc.'); $somestring =~ s/$qmstring//g;