我有一个像这样的html字符串
<html>
<div>
<p>this is sample content</p>
</div>
<div>
<p>this is another sample</p>
<span class="test">this sample should not caught</span>
<div>
this is another sample
</div>
</div>
</html>
现在我想sample
从这个字符串中搜索单词,这里我不应该得到里面的“样本”<span>...</span>
我希望使用正则表达式完成此操作,我尝试了很多但我做不到,任何帮助都非常有用。
提前致谢。