我有一个这样的字符串
<div tagname="chapter_title" class="CHAP_TTL" aidpstyle="CHAP_TTL">testt</div>
<div tagname="section" id="sec01">
<div tagname="title" class="H1" aidpstyle="H1" id="sec01">
INTRODUCTION<!--title-->
</div>
<div tagname="para" class="CHAP_BM_FIRST" aidpstyle="CHAP_BM_FIRST">test3
<div tagname="emph" class="ITALIC" aidcstyle="ITALIC">buildings</div>
我正在尝试在标记名属性中查找不包含单词 (emph,section) 的 DIV
我使用了下面的模式,但它没有显示正确的输出
preg_match_all('/<div tagname="(?!emph)(?!section)(?!footnote)
(?!note).*"/i',$new_updated_html,$divstarttag);
有接盘侠吗??