.*any character (except for line terminators), repeated any number of times
{5}matches exactly 5 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
.*any character (except for line terminators), repeated any number of times
"the literal " (3410 / 428 / 2216)
Character Class[a-zA-Z\s] a-zone character from a (9710) to z (12210) (case sensitive)
A-Zone character from A (6510) to Z (9010) (case sensitive)
\sany whitespace character
.*any character (except for line terminators), repeated any number of times
"the literal " (3410 / 428 / 2216)
$end of string
g modifier: global. Finds all matches instead of stopping after the first