The "for" statement can be used the same way "with" is used in Pascal:
for ($item)
{
s/ / /g;
s/<.*?>/ /g;
$_ = join(" ", split(" ", $_));
}
You can apply a sequence of s/// operations, etc. to the same variable without having to repeat the variable name.
NOTE: The first s///g statement turns & nbsp; into spaces. Unfortunately, stackoverflow.com is incorrectly rendering the code, showing the & nbsp; as a space. It doesn't do that in the preview, but it does to the public.