show/hide this revision's text 5 Minor edit: grammar/spelling/case/punctation/etc.

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 Unicode in it to circumvent the Markdown. Don't copy paste it :)

show/hide this revision's text 4

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

for ($item)
{
    s/& nbsp;/ &‎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 &‎nbsp;) has hidden unicode in stackoverflow.com renders it to circumvent the whole entity as a space, and that's even more confusingMarkdown. Don't copy paste it :)

show/hide this revision's text 3 added space to & nbsp;, so it doesn't disappear, and explain in NOTE

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

for ($item)
{
    s/&nbsp;/ & 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 first s///g statement turns the non-breaking space above (& nbsp; into spaces. Unfortunately, stackoverflow.com nbsp;) is incorrectly rendering shown with a space. If I take out the codespace, showing a bug in stackoverflow.com renders the & nbsp; whole entity as a space. It doesn't do that in the preview, but it does to the publicand that's even more confusing.

show/hide this revision's text 2 quote the &, so   shows up right
    Post Made Community Wiki by Community
show/hide this revision's text 1