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.