I have a big html files with JavaScript. I need to remove all instances of JavaScript that contain the text 'uploadclass' between the script tags. In other words, if the script has 'uploadclass' within it, everything between (and including) the tags and should be deleted.
Nothing I've tried (including I've tried ([^(<]+)(uploadclass,?.*</script>)) gives me exactly what I want. Any suggestions from those RegEx experts?