Regular Expressions · Example Payload

Regular Expressions Email Pattern Example

Validates that a string conforms to the basic structure of an email address with a local part, @ symbol, domain name, and TLD.

EmailValidationWeb Forms

Regular Expressions Email Pattern Example is an example object payload from Regular Expressions, with 13 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

idnamedescriptionpatternflagsflavoruseCasetagsexamplesgroupsperformancecreatedmodified

Example Payload

regular-expressions-email-pattern-example.json Raw ↑
{
  "id": "email-validation-basic",
  "name": "Email Address Validation",
  "description": "Validates that a string conforms to the basic structure of an email address with a local part, @ symbol, domain name, and TLD.",
  "pattern": "^[a-zA-Z0-9._%+\\-]+@[a-zA-Z0-9.\\-]+\\.[a-zA-Z]{2,}$",
  "flags": "i",
  "flavor": "PCRE",
  "useCase": "Email Validation",
  "tags": ["Email", "Validation", "Web Forms"],
  "examples": {
    "matching": [
      "user@example.com",
      "firstname.lastname@company.org",
      "user+tag@subdomain.example.co.uk",
      "user123@domain.io"
    ],
    "nonMatching": [
      "not-an-email",
      "@missing-local.com",
      "missing-domain@",
      "missing.dot@comtld",
      "spaces in@email.com"
    ]
  },
  "groups": [],
  "performance": {
    "backtracking": false,
    "catastrophicBacktracking": false,
    "notes": "Simple linear pattern with no catastrophic backtracking risk. Suitable for high-volume validation."
  },
  "created": "2026-05-02",
  "modified": "2026-05-02"
}