Сверхъестественное matches the characters Сверхъестественное literally (case sensitive)
.
matches any character (except for line terminators)Line terminator(s) are \n
* matches the previous token between zero and unlimited times, as many times as possible, giving back as needed (greedy)
\[ matches the character [ literally (case sensitive)
1080p matches the characters 1080p literally (case sensitive)
\] matches the character ] literally (case sensitive)
g modifier: global. All matches (don't return after first match)