vote up 0 vote down star
1

I'm looking for C# regular expression to replace/remove all JavaScript from HTML. Can someone please help me with the code?

flag

2 Answers

vote up 5 vote down

Removing just the <script> tags won't actually do it. That's because you can put Javascript in event handlers too (onclick, etc). They're a lot harder to catch with a regular expression.

Once again, we revisit the issue or parsing or processing HTML with regular expressions. It's the wrong tool for the job. If you don't want flaky code, use an HTML parser.

link|flag
vote up 3 vote down

Why do you want to filter javascript?

If you are trying to prevent cross-site scripting attacks in a web application you're probably better off using a well-tested library for that purpose. It looks like Microsoft has an AntiXSS library, which may be of use.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.