良い一日、
正規表現を使用してタグ内のすべてを取得する代替手段はありますか? ここに私のコードがあります:
MatchCollection matches = Regex.Matches(chek, "<bib-parsed>([^\000]*?)</bib-parsed>");
サンプル入力は次のとおりです。
<bib-parsed>
<cite>
<pubinfo>
<pub-year><i>1984</i></pub-year>
<pub-place>Albuquerque</pub-place>
<pub-name>Maxwell Museum of Anthropology and the University of New Mexico Press </pub-name>
</pubinfo>
<bkinfo>
<btl>The Galaz Ruin: A Prehistoric Mimbres Village in Southwestern New Mexico</btl>
</bkinfo>
</bib-parsed>
上記のサンプルは一致しますが、「2001」のように pubyear 内に「0」がある場合、一致は失敗します。これに代わるものはありますか?ありがとう