\S
matches any non-whitespace character (equivalent to [^\r\n\t\f\v ])+ matches the previous token between one and unlimited times, as many times as possible, giving back as needed (greedy)
.
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)
1 matches the character 1 literally (case sensitive)
. matches any character (except for line terminators)Line terminator(s) are \n
0" matches the characters 0" literally (case sensitive)
\s
matches any whitespace character (equivalent to [\r\n\t\f\v ])+ matches the previous token between one and unlimited times, as many times as possible, giving back as needed (greedy)
401 matches the characters 401 literally (case sensitive)
.
matches any character (except for line terminators)Line terminator(s) are \n