以下の html 応答コードから文字列 ( 201
& )を抽出しようとしています。202
これまでのところ、次の正規表現を試しました
punumber=(.+)
しかし、問題はpunumber
、ページ上に のインスタンスが多数あり、不要なものが取得されることです。
必要な文字列は<h3 class="content-title">
.
h3クラス内でのみpunumberを抽出するための正規表現を書くのを手伝ってもらえますか?
<h3 class="content-title">
<!-- change when this is completed -->
<a href="/container/recentIssue.jsp?punumber=201">
Title 1
</a>
</h3>
<h3 class="content-title">
<!-- change when this is completed -->
<a href="/container/mostRecentIssue.jsp?punumber=202">
Title 1
</a>
</h3>