Press "Enter" to skip to content

php中正则表达式多行与非贪婪一起使用

评价:
0
(0用户)

正则这玩意每次用都记不住,老是要上网搜索一下,索性这次就记录下来,方便以后查阅。

比如以下html代码:

<table>
  <tr>
    <td>aaaa</td>
  </tr>
  <tr>
    <td>bbbb</td>
  </tr>
  <tr>
    <td>cccc</td>
  </tr>
</table>

如果只想取出第一个td里面的aaaa,需要用到正则多行和非贪婪匹配。

那么pattern可以这样写:/<td>(.*?)<\/td>/is

本文为原创文章,转载请注明出处!

注册并通过认证的用户才可以进行评价!

Be First to Comment

发表评论