The "for" statement can be used the same way "with" is used in Pascal:

    for ($item)
    {
        s/&‎nbsp;/ /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 non-breaking space above (&‎nbsp;) has hidden Unicode in it to circumvent the Markdown. Don't copy paste it :)