> does anybody know how to strip out html tags from a text using regexp If Cach� has regular expressions, that is good news to me.
> (or anything else) The DOM parser (Robb Tweed?) might help you depending on your purpose. I use an edit utility classmethod that replaces from string1 to string2 with string3 for every occurrence. I strip everything from < to >, and replace specific &...; occurrences with a single character. You could start by stripping everything from <script> to </script>. What the PHP code does is less general. Where I have had numerous such edits, I have listed them in $text() and iterated through them at runtime.
