Need Help for RegEx
Hi all,
I want regular expression for the following script:
<script language="javascript1.1" type="text/javascript">
<!--
cmCreatePageviewTag("checkout2/shippinginfo.tmpl", "850");
//-->
</script>
I want to print the whole data between <script>to</script>, I write a R.E. like this
<script.*>.*</script>
but it not works , it only prints the first line. It should print whole script. I think i am getting problem with new line characters. Can anyone please tell me what will be the R.E. for this . It should work for any script.
Please reply as soon as possible.
Thanx,
Vinayak

