АВЕКМНОРСТУХавекмнорстухABEKMHOPCTYXabekmhopctyx matches a single character in the list АВЕКМНОРСТУХавекмнорстухABEKMHOPCTYXabekmhopctyx (case sensitive)
\s*
matches any whitespace character (equal to [\r\n\t\f\v ])
*Quantifier — Matches between zero and unlimited times, as many times as possible, giving back as needed (greedy)
\d{3}
matches a digit (equal to [0-9])
{3}Quantifier — Matches exactly 3 times
\s*
matches any whitespace character (equal to [\r\n\t\f\v ])
*Quantifier — Matches between zero and unlimited times, as many times as possible, giving back as needed (greedy)
Match a single character present in the list below
АВЕКМНОРСТУХавекмнорстухABEKMHOPCTYXabekmhopctyx matches a single character in the list АВЕКМНОРСТУХавекмнорстухABEKMHOPCTYXabekmhopctyx (case sensitive)
\s*
matches any whitespace character (equal to [\r\n\t\f\v ])
*Quantifier — Matches between zero and unlimited times, as many times as possible, giving back as needed (greedy)
\d{2,3}
matches a digit (equal to [0-9])
{2,3}Quantifier — Matches between 2 and 3 times, as many times as possible, giving back as needed (greedy)
АВЕКМНОРСТУХавекмнорстухABEKMHOPCTYXabekmhopctyx matches a single character in the list АВЕКМНОРСТУХавекмнорстухABEKMHOPCTYXabekmhopctyx (case sensitive)
\s*
matches any whitespace character (equal to [\r\n\t\f\v ])
*Quantifier — Matches between zero and unlimited times, as many times as possible, giving back as needed (greedy)
\d{3}
matches a digit (equal to [0-9])
{3}Quantifier — Matches exactly 3 times
\s*
matches any whitespace character (equal to [\r\n\t\f\v ])
*Quantifier — Matches between zero and unlimited times, as many times as possible, giving back as needed (greedy)
\d{2,3}
matches a digit (equal to [0-9])
{2,3}Quantifier — Matches between 2 and 3 times, as many times as possible, giving back as needed (greedy)
Global pattern flags
g modifier:global. All matches (don't return after first match)
m modifier:multi line. Causes ^ and $ to match the begin/end of each line (not only begin/end of string)