전화 번호,핸드폰 번호,메 일 주소 에 맞 게 사용 하기 좋 은 방법
1153 단어 정규 일치
$str = "<a href='http://www.baidu.com' target='_blank'> </a>http://www<a href='http://www.sina.com' target='_blank'> </a>kod";
preg_match_all("/<a href=([\"\'])(http:\/\/([\w\d\.])+)[^>]*>(.*?)<\/a>/i", $str, $matches);
echo "<pre>";
var_dump($matches[2]);
echo "<br />";
var_dump($matches[4]);
이 메 일
$emails = "[email protected]@163.com";
preg_match_all("/([a-z0-9_\-\.]+)@(([a-z0-9]+[_\-]?)\.)+[a-z]{2,3}/i", $emails, $matches);
var_dump($matches[0]);
과 핸드폰 과 전화번호
$tel = "13911112222sf010-44444442dfg18811112222";
preg_match_all("/1[3,5,8]{1}[0-9]{1}[0-9]{8}|0[0-9]{2,3}-[0-9]{7,8}(-[0-9]{1,4})?/", $tel, $matches);
var_dump($matches);
와 일치 하 는 것 을 도 울 수 있 기 를 바 랍 니 다.