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;) is shown with a space.  If I take out the space, a bug in stackoverflow.com renders the whole entity as a space, and that's even more confusing.