从 Windows Phone 上的 RSS 提要中提取图像链接
我有一个问题。
如何从 rss-feed 中提取 url?
我需要提取的字符串是这样的:
><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" />
这是在我的 self hostet wordpress-blog 的 rss feed 上的
部分中。
我想获取条目的第一个图像,将其与列表框中的标题(这有效)结合在一起。
然而,我尝试了很多方法来实现这一目标,但没有任何效果。
我正在使用 Silverlight 3 的 Syndicate.dll 来提取提要项。
此刻我真的站在墙前等待解决这个问题。
我愿意接受任何建议。
I have a question.
How can I extract an url from an rss-feed?
The string which I need to extract is something like this:
><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" />
This is on the rss feed of my self hostet wordpress-blog, within the <content:encoded>
section.
I want to fetch the first Image of an entry to get it together with the title (this works) in my ListBox.
However I tried many things to achieve this, but nothing works.
I am working with the Syndication.dll of Silverlight 3 to extract the feed items.
At the moment I am standing really in front of a wall for this to solve.
I am open to any suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 HTML Agility pack http://htmlagilitypack.codeplex.com/ 有一个适用于 Windows Phone 的版本 (HAPPhone在后备箱里)。从帖子内容获取文档后,您可以获得它们的第一个 img 元素子元素。
You can use HTML Agility pack http://htmlagilitypack.codeplex.com/ There's a version for Windows Phone (HAPPhone in the trunk). After getting a Document from the content of the post you can get the first img element child of them.
像这样的事情应该适合您:
您只需完成 switch 语句并创建
Item
类。Something like this should work for you:
You only have to finish the switch statement and create the
Item
class.