.
matches any character (except for line terminators)Line terminator(s) are \n
+ matches the previous token between one and unlimited times, as many times as possible, giving back as needed (greedy)
src= matches the characters src= literally (case sensitive)
\" matches the character " literally (case sensitive)
.
matches any character (except for line terminators)Line terminator(s) are \n
+ matches the previous token between one and unlimited times, as many times as possible, giving back as needed (greedy)
\" matches the character " literally (case sensitive)
\s matches any whitespace character (equivalent to [\r\n\t\f\v ])
.
matches any character (except for line terminators)Line terminator(s) are \n
+ matches the previous token between one and unlimited times, as many times as possible, giving back as needed (greedy)
$ asserts position at the end of a lineLines are delimited by \n
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)