Rumah >pembangunan bahagian belakang >tutorial php >正则有关问题求教
正则问题求教
我想把字符串中的title内容找出来,该怎么弄?下面code是我写得,但不行..
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?php $regex='/<title>[\s\S]*?/';$str='aaa<title>bbbbbb</title>ccccccccc';$result=array();preg_match($regex,$str,$result);print_r($result);?>