Skip to content

Instantly share code, notes, and snippets.

@Klerith
Created January 7, 2025 16:03
Show Gist options
  • Save Klerith/e0cf87e1df88853e98290e12b5b00570 to your computer and use it in GitHub Desktop.
Save Klerith/e0cf87e1df88853e98290e12b5b00570 to your computer and use it in GitHub Desktop.
Expresiones regulares para validar elementos
static namePattern = '([a-zA-Z]+) ([a-zA-Z]+)';
static emailPattern = '^[a-z0-9._%+-]+@[a-z0-9.-]+\\.[a-z]{2,4}$';
static notOnlySpacesPattern = '^[a-zA-Z0-9]+$';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment