Looking for any lowercase alphabetical character or the numbers 3, 4, and 7 : preg_match « String « PHP
- PHP
- String
- preg_match
Looking for any lowercase alphabetical character or the numbers 3, 4, and 7
<?
if ( preg_match("/[a-z347]+/", "AB asdf123123asdfasdf", $array) ) {
print "<pre>\n";
print_r( $array );
print "</pre>\n";
}
?>
Related examples in the same category