*repeats the group contents below any number of times:
\s*any whitespace character, repeated any number of times
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
_the literal _ (9510 / 1378 / 5F16)
Character Class[A-Za-z0-9]* *matches any number of characters from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
\s*any whitespace character, repeated any number of times
Non-Capturing Group(?:=\s*(?:[A-Za-z0-9]+(?:[+\/*-][A-Za-z0-9]+)?|"[^"]*"|'[^']*'))? ?repeats the group contents below at most once:
=the literal = (6110 / 758 / 3D16)
\s*any whitespace character, repeated any number of times
Non-Capturing Group(?:[A-Za-z0-9]+(?:[+\/*-][A-Za-z0-9]+)?|"[^"]*"|'[^']*') 1st Alternative[A-Za-z0-9]+(?:[+\/*-][A-Za-z0-9]+)? Character Class[A-Za-z0-9]+ +matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
Non-Capturing Group(?:[+\/*-][A-Za-z0-9]+)? ?repeats the group contents below at most once:
+the literal + (4310 / 538 / 2B16)
\/the literal / (4710 / 578 / 2F16)
*the literal * (4210 / 528 / 2A16)
-the literal - (4510 / 558 / 2D16)
Character Class[A-Za-z0-9]+ +matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
"the literal " (3410 / 428 / 2216)
Negated Character Class[^"]* *matches any number of characters outside the set below:
"the literal " (3410 / 428 / 2216)
"the literal " (3410 / 428 / 2216)
'the literal ' (3910 / 478 / 2716)
Negated Character Class[^']* *matches any number of characters outside the set below:
'the literal ' (3910 / 478 / 2716)
'the literal ' (3910 / 478 / 2716)
\s*any whitespace character, repeated any number of times
,the literal , (4410 / 548 / 2C16)