regex on names
// this filter works for most of cases
/* use this regex */ preg_match("/^[a-z ,.'-]+$/i", your_string);
regex on names
// this filter works for most of cases
/* use this regex */ preg_match("/^[a-z ,.'-]+$/i", your_string);
find full name regular expression
^[A-Z][-a-zA-Z]+$
regular expression characters
/* shorthand character classes */
regex = /d/; // matches any digit, short for [0-9]
regex = /D/; // matches non-digits, short for [^0-9]
regex = /S/; // matches non-white space character
regex = /s/; // matches any white space character
regex = /w/; // matches character, short for [a-zA-Z_0-9]
regex = /W/; // matches non-word character [^w]
regex = /b/; // Matches a word boundary where a word character is [a-zA-Z0-9_]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us