Pattern
/^[A-Za-z][A-Za-z0-9_]{2,15}$/Sample text
alice_01 _bad ab toolongusername12345Test this pattern in the editor
3–16 chars: letter start, then letters, digits, underscore.
/^[A-Za-z][A-Za-z0-9_]{2,15}$/alice_01 _bad ab toolongusername12345Test this pattern in the editor
Capture local and domain parts from common email shapes.
Match protocol, host, and optional path/query.
Require length and mixed character classes (demo only).
International numbers with leading + and country code.
Common +7 / 8 mobile formats with optional separators.
North American formats with optional country code.