Answers for "regex on names"

PHP
0

regex on names

// this filter works for most of cases

/* use this regex */ preg_match("/^[a-z ,.'-]+$/i", your_string);
Posted by: Guest on August-06-2021

Browse Popular Code Answers by Language