\(the literal ( (4010 / 508 / 2816)
\s?optionally matches a Unicode whitespace character
Rthe literal R (8210 / 1228 / 5216) (case sensitive)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
eadthe literal text ead (case sensitive) .*?any Unicode character (except for line terminators), repeated any number of times
\sa Unicode whitespace character
timethe literal text time (case sensitive) \:?optionally matches the literal : (5810 / 728 / 3A16)
.*?any Unicode character (except for line terminators), repeated any number of times
1-9one character from 1 (4910) to 9 (5710)
s*the literal s (11510 / 1638 / 7316) (case sensitive), repeated any number of times
.*?any Unicode character (except for line terminators), repeated any number of times
\)the literal ) (4110 / 518 / 2916)
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