I am trying to use find and replace to remove scripts from an HTML document. I tried to use the following regular expression, but it only selects script beginning and end tag, but leaves tag's content in place:
"</?script[^<]*?>"
For the record, I am not versed in regular expressions.