Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<h1>15</h1>HTML ソースがあり、タグ 間の値を取得する必要があります。<h1>インスタンスは、完全な html コードで何度も表示されます。
<h1>15</h1>
<h1>
以下は、html コードのサンプル部分です。
<div class="rs_text_11_may"> <p>Rs</p> <h1>15</h1> </div>
私はたくさん試しましたが、達成できませんでした。友達を助けて...
次の正規表現が必要です:(?<=<h1>).+?(?=</h1>)これは C# で正常に動作します。
(?<=<h1>).+?(?=</h1>)
Regex regex = new Regex(@"(?<=<h1>).+?(?=</h1>)"); MatchCollection mc = regex.Matches(@"<h1>15</h1><h1>14</h1>", 0);