php check regular string

Solutions on MaxInterview for php check regular string by the best coders in the world

showing results for - "php check regular string"
Elona
16 Oct 2016
1//You should use a regex filter with preg_match who returns 1 or 0
2
3// this filter works for most of cases
4
5/* use this regex */ preg_match("/^[a-z ,.'-]+$/i", your_string);
6
7if you want more regex filters you can make yours on 'https://regex101.com/'