它可能非常简单。
我想仅匹配完整<headers>
这是我到目前为止所做的。
(<h[d{1-6}](.itemprop.)(.*?)</h[d{1-6}]>)
我希望它匹配
<h1 class="test" itemprop="name">Test</h1>
和
<h2 itemprop="name" class="test">Test</h2>
和
<h6 class="test"><strong itemprop="Price">9,99</strong>Test</h6>
现在它只匹配<h{1-6} itemprop
等
答案 0 :(得分:1)
怎么样:
<h([1-6]).*?\bitemprop\b.*?</h\1>)