私はRSSから以下のようなcontent:encodedテキストを持っています:
<content:encoded><![CDATA[<P><B>Wednesday, September 26, 2012</B></P>It is Apple.<P>Shops are closed.<br />Parking is not allowed here. Go left and park.<br />All theatres are opened.<br /></P><P><B>Thursday, September 27, 2012</B></P><P>Shops are open.<br />Parking is not allowed here. Go left and park.<br />All theatres are opened.<br /></P>]]></content:encoded>
以下の方法を使用して、HTMLからテキストを抽出できます。
public static string StripHTML(this string htmlText)
{
var reg = new Regex("<[^>]+>", RegexOptions.IgnoreCase);
return HttpUtility.HtmlDecode(reg.Replace(htmlText, string.Empty));
}
ただし、内のテキストを<b></b>
dateArray []に挿入し、内のテキスト<p></p>
をdescriptionArray []に挿入して、次のように表示できるようにします。
前もって感謝します。