2

我是 C# 和 Windows Phone 开发的新手,所以如果我遗漏了明显的内容,请原谅我:

我想显示来自位于http://blog.dota2.com/feed/的 RSS XML 提要的缩略图。该图像位于用 HTML 编写的 CDATA 标记内。这是 XML 代码:

    <content:encoded>
<![CDATA[
<p>We celebrate Happy Bear Pun Week a day earlier as Lone Druid joins Dota 2&#8242;s cast of heroes.</p> <p><a href="http://media.steampowered.com/apps/dota2/posts/LoneDruid_full.jpg "><img class="alignnone" title="The irony is that he's allergic to fur." src="http://media.steampowered.com/apps/dota2/posts/LoneDruid_small.jpg" alt="The irony is that he's allergic to fur." width="551" height="223" /></a></p> <p>Community things:</p> <ul> <li><a href="http://www.itsgosu.com/game/dota2/articles/ig-monthly-madness-invitational-finals-mar-29_407" target="_blank">It&#8217;s Gosu&#8217;s Monthly Madness</a> tournament finals are tomorrow, March 29th. You don&#8217;t want to miss this, we hear it could be more than we can bear.</li> <li>Bear witness to <a href="http://www.team-dignitas.net/articles/blogs/DotA/1092/Dota-2-Ultimate-Guide-to-Warding/" target="_blank">Team Dignitas&#8217; Ultimate Guide to Warding</a>. This should be required teaching in clawsrooms across the globe.</li> <li>Great Explorer Nullf has <a href="http://nullf.deviantart.com/#/d4ubxiu" target="_blank">compiled the eating habits</a> of the legendary Tidehunter in one handy chart. This might give you paws before deciding to head to the beach.</li> </ul> <p>Bear in mind that there will not be an update next week as we will be hibernating during that time.</p> <p>Today&#8217;s bearlog is available <a href="http://store.steampowered.com/news/7662" target="_blank">here</a>.</p> <p>&nbsp;</p> <p>Bear.</p>
]]>
</content:encoded>

我只需要 <img src="http://media.steampowered.com/apps/dota2/posts/LoneDruid_small.jpg" /> 这样我就可以使用 URL 在我的阅读器应用程序中显示图像。

我听说有人说不要使用正则表达式,因为它是解析 HTML 的坏习惯。我将其创建为概念证明,无需担心。我正在寻找获取图像的此 URL 的最快方法,然后在我的应用程序中调用它。

有人有帮助吗?在此先感谢,汤姆

4

3 回答 3

1

当你准备好使用HtmlAgilityPack时,你可以试试这个

HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(yourstring);
var imgLinks = doc.DocumentNode
    .Descendants("img")
    .Select(n => n.Attributes["src"].Value)
    .ToArray();
于 2012-04-10T14:18:05.910 回答
1

假设您的 xml 看起来像这样(我确定它不是),并且这些扩展名:http ://searisen.com/xmllib/extensions.wiki

<?xml version="1.0" encoding="utf-8"?>
<root xmlns:content='uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882'>
  <content:encoded>
    <![CDATA[
<p>We celebrate ...</p> 
<p>
  <a href="http://media.steampowered.com/apps/dota2/posts/LoneDruid_full.jpg ">
    <img class="alignnone" title="The irony is that he's allergic to fur." 
        src="http://media.steampowered.com/apps/dota2/posts/LoneDruid_small.jpg" />
  </a>
</p> 
<p>the rest removed</p> 
]]>
  </content:encoded>
</root>

这将从第二段中获取图像源 - 硬编码且丑陋,但这就是您所说的所有内容。您必须给出path/to/content:encoded它的工作路径,如果它在一个组(又名数组)中,那么它会更加复杂。从我的代码中,您可以看到如何分离出数组(参见 paras):

XElement root = XElement.Load(file) // or .Parse(string)
string html = root.Get("content:encoded", string.Empty).Replace("&nbsp", " ");
XElement xdata = XElement.Parse(string.Format("<root>{0}</root>", html));
XElement[] paras = xdata.GetElements("p").ToArray();
string src = paras[1].Get("a/img/src", string.Empty);

PS这是有效的,因为HTML格式正确,如果不是,那么您将不得不使用其他人回答的HtmlAgilityPack。您可以使用htmlGet("content:emcoded" ...)

于 2012-04-10T17:46:23.440 回答
0
const string pattern = @"<img.+?src.*?\=.*?""(<?URL>.*?)""";
Regex regex = new Regex(pattern, RegexOptions.IgnoreCase);
var match = regex.Match(myCDataText);
var domain = match.Groups["URL"].Value;
于 2012-04-10T14:20:26.607 回答