movie_links matches the characters movie_links literally (case sensitive)
.*
matches any character (except for line terminators)Line terminator(s) are \n
* Quantifier — Matches between zero and unlimited times, as many times as possible, giving back as needed (greedy)
\n matches a line-feed (newline) character (ASCII 10)
.*
matches any character (except for line terminators)Line terminator(s) are \n
* Quantifier — Matches between zero and unlimited times, as many times as possible, giving back as needed (greedy)
\n matches a line-feed (newline) character (ASCII 10)
.*?
matches any character (except for line terminators)Line terminator(s) are \n
*? Quantifier — Matches between zero and unlimited times, as few times as possible, expanding as needed (lazy)
href=" matches the characters href=" literally (case sensitive)
1st Capturing Group (.*?)
.*?
matches any character (except for line terminators)Line terminator(s) are \n
" matches the character " literally (case sensitive)
.+?
matches any character (except for line terminators)Line terminator(s) are \n
2nd Capturing Group (Streamango|Openload)
g modifier: global. All matches (don't return after first match)
m modifier: multi line. Causes ^ and $ to match the begin/end of each line (not only begin/end of string)