php使用正则表达式进行字符串搜索的方法

这篇文章主要介绍了php使用正则表达式进行字符串搜索方法,实例分析了php正则表达式的使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php使用正则表达式进行字符串搜索方法。分享给大家供大家参考。具体实现方法如下:

<?php $string_to_search = "jb51.net"; $regex = "/tor/"; $num_matches = preg_match($regex, $string_to_search); if ($num_matches > 0) { echo "Found a match!"; } else { echo "No match. Sorry."; } ?>

希望本文所述对大家的php程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/3401140f399e85b7c1c85b4041cc303a.html