私はこのような文字列を持っています
<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>
tagname 属性に単語 (emph,section) を含まない DIV を見つけようとしています
以下のパターンを使用しましたが、正しい出力が表示されません
preg_match_all('/<div tagname="(?!emph)(?!section)(?!footnote)
(?!note).*"/i',$new_updated_html,$divstarttag);
テイカーはいますか??