^start of line
A-Zone character from A (6510) to Z (9010) (case sensitive)
\-the literal - (4510 / 558 / 2D16)
{2}matches exactly 2 characters from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
\-the literal - (4510 / 558 / 2D16)
{4}matches exactly 4 characters from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
\-the literal - (4510 / 558 / 2D16)
{3}matches exactly 3 characters from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
\-the literal - (4510 / 558 / 2D16)
\w{4}any word character, repeated exactly 4 times
$end of line
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