Hi!
How do I filter out all HTML-tags for converting a HTML-page into plain text?
You could use a PCRE like so:
$plain_text = htmlentities (preg_replace ("/<.*?>/", "", $html));
Thanks for this great command! It works right well.