我想在某些部分之后从下面的 html 中删除所有字符串。
<br>
<br>
</div>
<div class="notation_notes">
<hr>
<br>
●表記について<br>
<ul>
<li>このファイルは W3C 勧告 XHTML1.1 にそった形式で作成されています。</li>
<li>[#…]は、入力者による注を表す記号です。</li>
</ul>
</div>
<div id="card" style="display: block; ">
<hr>
<br>
<a href="JavaScript:goLibCard();" id="goAZLibCard">●図書カード</a><script type="text/javascript" src="../../contents.js"></script>
我想删除此标签后的所有代码。
<div class="notation_notes">
我的代码在这里,但它不会改变任何结果。谁能帮我解决这个问题?
NSArray *regExPatternList = @[@"<div class=\"notation_notes\">(.*)"];
NSRegularExpression *regexp = [NSRegularExpression regularExpressionWithPattern:regExPattern
options:0
error:nil];
html = [regexp stringByReplacingMatchesInString:html
options:0
range:NSMakeRange(0,html.length)
withTemplate:@""];