我正在尝试从中提取 URL
<description>
<![CDATA[
<img src="http://www.jawharafm.net/Galerie/admin/?public&action=photo_large&key=RuQhuDKGNA52" alt="" />
]]>
</description>
我使用了这段代码:
photo = Regex.Matches(res.Element("description").Value, "http://.*.()")[0].Value;
但这会返回从 ps 开始的所有数据,http
因为alt=""
我有一个完整的描述文件,所以我不能只用52
或整个键结束它,因为它是动态的。