-a----the literal text -a---- (case sensitive) \s{2,}any whitespace character, repeated at least 2 times
0-9one character from 0 (4810) to 9 (5710)
\/the literal / (4710 / 578 / 2F16)
{1,}matches at least one character from the set below:
0-9one character from 0 (4810) to 9 (5710)
\/the literal / (4710 / 578 / 2F16)
0-9one character from 0 (4810) to 9 (5710)
\s{1,}any whitespace character, repeated at least once
{1,}matches at least one character from the set below:
0-9one character from 0 (4810) to 9 (5710)
:the literal : (5810 / 728 / 3A16)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
the literal (3210 / 408 / 2016)
Athe literal A (6510 / 1018 / 4116) (case sensitive)
Pthe literal P (8010 / 1208 / 5016) (case sensitive)
Mthe literal M (7710 / 1158 / 4D16) (case sensitive)
\s{2,}any whitespace character, repeated at least 2 times
{2,}matches at least 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\sany whitespace character
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