<scriptthe literal text <script (case sensitive) \sa Unicode whitespace character
.*any Unicode character (except for line terminators), repeated any number of times
src=the literal text src= (case sensitive) \"the literal " (3410 / 428 / 2216)
Negative Lookahead(?!http) httpthe literal text http (case sensitive) .+?any Unicode character (except for line terminators), repeated at least once
.any Unicode character (except for line terminators)
jsthe literal text js (case sensitive) \"the literal " (3410 / 428 / 2216)
.*any Unicode character (except for line terminators), repeated any number of times
Non-Capturing Group(?:\/script>|\/>) \/the literal / (4710 / 578 / 2F16)
script>the literal text script> (case sensitive) \/the literal / (4710 / 578 / 2F16)
>the literal > (6210 / 768 / 3E16)
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string