Regular expression to grab form tag content doesn't work

柔情痞子 提交于 2019-12-21 21:11:10

问题


I am trying to grab contents/tags inside form tag using preg_match_all, here is the regular expression

/<form\b[^>]*>(.*?)<\/form>/i

But i wonder, why it doesn't work! Any idea?


回答1:


By default, the . (DOT) does not match line breaks. If you enable DOT-ALL with the s modifier, it does match those chars:

/<form\b[^>]*>(.*?)<\/form>/is

Realize that you won't be able to match something like:

<form>
   ...

   <!-- </form> -->

   ...
</form>

to name just one of the possibilities.




回答2:


Don't use regular expressions to parse HTML. Use an HTML parser.



来源:https://stackoverflow.com/questions/4288102/regular-expression-to-grab-form-tag-content-doesnt-work

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!