>  기사  >  백엔드 개발  >  匹配字符串解决办法

匹配字符串解决办法

WBOY
WBOY원래의
2016-06-13 13:40:03797검색

匹配字符串
如何返回url呢???

传入字符串:

HTML code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><a href="http://www.macaucentral.com/dev/index.php/beauty-content/6579-celina-beauty-centre">莎莉娜美容中心 Celina ...</a>


返回字符串
HTML code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->http://www.macaucentral.com/dev/index.php/beauty-content/6579-celina-beauty-centre


------解决方案--------------------
PHP code
<?php $str='<a href="http://www.macaucentral.com/dev/index.php/beauty-content/6579-celina-beauty-centre">莎莉娜美容中心 Celina ...';
$pattern='/<a>]*href="([^"\']*)"/';
preg_match($pattern,$str,$matchs);
print_r($matchs);
<br><font color="#e78608">------解决方案--------------------</font><br>
preg_match('/href="([^"]*)"/',$str,$arr);<br>echo $arr[1]; <div class="clear">
                 
              
              
        
            </div></a>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.