我有一個問題。從windows手機上的RSS源提取圖像鏈接
如何從rss-feed中提取網址?
,我需要提取的字符串是這樣的:
><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="screen2" src="http://hereisthelink/screen2.png" alt="screen2" width="261" height="434" border="0" />
這是我的自我hostet的WordPress,博客的RSS源,在<content:encoded>
區間內。
我想獲取一個條目的第一個圖像,以將它與標題(此作品)放在我的ListBox中。
但我嘗試了很多事情來實現這一點,但沒有任何工作。
我正在使用Silverlight 3的Syndication.dll來提取供稿項目。
目前,我真的站在牆前來解決這個問題。
我願意接受任何建議。
如果你可以將你的rss feed轉換爲客戶端的一個字符串,那麼你只需要解析它就可以得到你的圖像。 – BigL
也許這個鏈接可以幫助您: http://stackoverflow.com/questions/319591/reading-non-standard-elements-in-a-syndicationitem-with-syndicationfeed – BigL
我檢查了您的鏈接。這不是我正在尋找的。我想收集一個隨機生成的URL到圖像,將圖像綁定到這個URL。目前我正在玩RegEx來解決這個問題。任何想法呢? Thx – MSicc