Possible Duplicate:
Remove JavaScript with Regex
How can i remove all content between <script.... and ... </script>?
If I write:
s = s.replaceAll("<script.+</script>", "");
It removes everything between the first <script until the last </script>, but i want to remove from the first <script until the first </script>
please help