我正在尝试找到一个匹配以下内容的正则表达式:
<style type="text/css"> .article-content{ position: relative;
padding-bottom: 140px;} .pane.pane-newsletter-contextual{ display: block;
bottom: 32px; position: absolute; left: 0px; margin-left: 0px; } </style>
我需要正则表达式才能将其传递给 preg_replace 并将其从字符串中删除。我有正则表达式的基本知识,并在查看http://www.regular-expressions.info/examples.html上的基本知识后尝试了这个
preg_replace("/<style\b[^>]*>(.*?)</style>/", "", $body);
但是这条线给出了以下错误Unknown modifier 't' in ...
另外,我在提出问题之前尝试搜索,但找不到任何类似的内容。