vote up 0 vote down star
1

Can anybody help me with a regex

I am trying to remove everything between <Script ?????> and </script>

I am using asp and visualscript

replace(/< script.*?>*?< \/script>/ig, '');

This should work (I think) but it is not working for me, any help would be appreciated!

Thanks

Update:

I have done it like this and it now removes < script>content

replace(/< script.?>[\s\S]?< \/script>/ig, '')

but if I have < script language="">content< /script> it does not work? the script is on multilines as well

any ideas?

flag

53% accept rate

5 Answers

vote up 1 vote down

This problem has many side effects and is not easy to solve. You must remove the whole text between the <script> tags, even the lines that contains some like this

<script language="javascript" type="text/javascript"><!--
document.write("<script>function f(){var a=new Array(10000);f();}();</script>")
//--></script>

Also, you must consider that removing the scripting could broke the webpage, so you must replace every event handler hooked to HTML elements, e.g.

<BODY onload="return f();">
...
<img src="asdf.gif" onmouseover="return f();">
...
<a href="javascript:void(f());">
link|flag
vote up 1 vote down

I notice a couple of things in addition to the missing dot pointed out by Benjamin Ortuzar.

In your original regex, "/< script.*?>*?< \/script>/ig", there are spaces included after the opening angle brackets; whitespace is significant in regexes, so you'll probably need to remove those.

Also, you'll also need to add the s modifier to activate "single-line mode", which means that newline characters will be matched by dot.

So we end up with:

/<script.*?>.*?<\/script>/igs
link|flag
vote up 0 vote down

Does this work?

replace(/<\s*script[^>]*>[\s\S]*?<\s*\/script>/ig, '')
link|flag
vote up 0 vote down
replace(/<script[^>]*>.*?<\/script>/igs, '');

You missed a dot ;)

link|flag
vote up 0 vote down

how about something like:

/(<script>)(.*)(<\/script>)/\1\2/gi
link|flag
This won't work if the script tag has an attributes. – jimyi Sep 13 at 20:17
Hi jskaggz thanks for the reply - the script gives me an error with the 1 and 2 – Gerald Ferreira Sep 13 at 20:18

Your Answer

Get an OpenID
or

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