Skip to content

Instantly share code, notes, and snippets.

@Alloco225
Created September 25, 2020 08:45
Show Gist options
  • Save Alloco225/fa241f69dd922e0db39b037f9e3ebd65 to your computer and use it in GitHub Desktop.
Save Alloco225/fa241f69dd922e0db39b037f9e3ebd65 to your computer and use it in GitHub Desktop.
class Helpers{
static String email_pattern = r'^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$';
static String password_pattern = r'^[a-zA-Z0-9]{6,}$';
static String mobile_pattern = r'^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment