HTML ページを解析し、そこから特定の値を取得したいと考えています。Linq または C# での文字列解析を使用してこれを行うにはどうすればよいですか?
------------- その他の HTML ----------
<span class="date">
04.09.2012
</span>
<table cellspacing="0"><tr><th scope="row">1 EUR</th><td><span>**4,4907**</span></td><td><span class="rise">+0,0009</span></td><td><span class="rise">+0,02%</span></td></tr><tr><th scope="row">1 USD</th><td><span>3,5635</span></td><td><span class="fall">-0,0093</span></td><td><span class="fall">-0,26%</span></td></tr></table>
------------- その他の HTML ----------
太字で 4,4907 という値を取得することに興味があります。
これを達成する方法はありますか?
ありがとう!