Hi gurus,
What can be the perl regular expression that replaces the <script></sript> tags and anything between them with blank space
currently I am doing soemthing like this,
$comments =~ s!<script||javascript||vbscript||(../)||</script>!!ig;
but this just removes the <script tags
Thank you
What can be the perl regular expression that replaces the <script></sript> tags and anything between them with blank space
currently I am doing soemthing like this,
$comments =~ s!<script||javascript||vbscript||(../)||</script>!!ig;
but this just removes the <script tags
Thank you