^start of line
Uthe literal U (8510 / 1258 / 5516) (case sensitive)
uthe literal u (11710 / 1658 / 7516) (case sensitive)
\w{0,10}any word character, repeated between 0 and 10 times
\s*any whitespace character, repeated any number of times
*matches any number of characters from the set below:
Mthe literal M (7710 / 1158 / 4D16) (case sensitive)
mthe literal m (10910 / 1558 / 6D16) (case sensitive)
\w{0,4}any word character, repeated between 0 and 4 times
*repeats the group contents below any number of times:
\,the literal , (4410 / 548 / 2C16)
\s*any whitespace character, repeated any number of times
*matches any number of characters from the set below:
Rthe literal R (8210 / 1228 / 5216) (case sensitive)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
\w{0,3}any word character, repeated between 0 and 3 times
\s*any whitespace character, repeated any number of times
\w{0,1}optionally matches any word character
\s*any whitespace character, repeated any number of times
*matches any number of characters from the set below:
Pthe literal P (8010 / 1208 / 5016) (case sensitive)
pthe literal p (11210 / 1608 / 7016) (case sensitive)
\w{0,9}any word character, repeated between 0 and 9 times
\sany whitespace character
\w{0,2}any word character, repeated between 0 and 2 times
\s*any whitespace character, repeated any number of times
Sthe literal S (8310 / 1238 / 5316) (case sensitive)
sthe literal s (11510 / 1638 / 7316) (case sensitive)
\w{0,2}any word character, repeated between 0 and 2 times
\s*any whitespace character, repeated any number of times
Fthe literal F (7010 / 1068 / 4616) (case sensitive)
fthe literal f (10210 / 1468 / 6616) (case sensitive)
\w{0,8}any word character, repeated between 0 and 8 times
\s*any whitespace character, repeated any number of times
Xthe literal X (8810 / 1308 / 5816) (case sensitive)
xthe literal x (12010 / 1708 / 7816) (case sensitive)
\w{0,5}any word character, repeated between 0 and 5 times
\s*any whitespace character, repeated any number of times
\w{0,2}any word character, repeated between 0 and 2 times
\s*any whitespace character, repeated any number of times
*matches any number of characters from the set below:
Cthe literal C (6710 / 1038 / 4316) (case sensitive)
cthe literal c (9910 / 1438 / 6316) (case sensitive)
\w{0,9}any word character, repeated between 0 and 9 times
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