我使用XDocument.Load进行Rss提要(" Somelink");我从服务器获取XML输出。
<item>
<title>Senior Web Developer</title>
<link>Some link</link>
<guid isPermaLink="false">Some link</guid>
<description><![CDATA[University of UK <br />Salary: £39,324 to £46,924 pa]]></description>
</item>
在描述标签中我得到公司信息和薪水,我只需要该说明中的薪资部分,如何从该链接中提取薪水。
var items = (from x in xDoc.Descendants("item")
select new
{
title = x.Element("title").Value,
description = x.Element("description").Value
});
如何从描述标签中提取该薪水。我想用两个不同的标签显示薪水。
我需要在Grid视图中输出Salary from和Salary to。我尝试了Regex.Match方法,只给出前两位数字。
代码: -
<asp:GridView ID="gRss" runat="server" AutoGenerateColumns="false"
ShowHeader="false" CssClass="table table-bordered table-striped">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<table class="table table-bordered table-striped">
<tr>
<td class="info"><%#Eval("Title") %></td>
</tr>
<tr>
<td><%#Eval("SalaryFrom") %></td>
</tr> <tr>
<td><%#Eval("SalaryTo") %></td>
</tr>
</table>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
C#代码
List<Feeds> feeds = new List<Feeds>();
try
{
XDocument xDoc = new XDocument();
xDoc = XDocument.Load("Some link");
var items = (from x in xDoc.Descendants("item")
select new
{
title = x.Element("title").Value,
description = x.Element("description").Value
});
if(items != null)
{
foreach(var i in items)
{
// string resultString = Regex.Match(i.description, @"\d+").Value;
//resultString = Regex.Match(subjectString, @"\d+").Value;
var match = Regex.Match(i.description, @": £(?<from>.*?) to £(?<to>.*?) ");
var from = match["from"].Value;
var to = match["to"].Value;
Feeds f = new Feeds
{
Title = i.title,
Description = resultString
};
feeds.Add(f);
}
}
gRss.DataSource = feeds;
gRss.DataBind();
}
答案 0 :(得分:2)
此正则表达式: £(?<from>.*?) to £(?<to>.*?)
使用命名捕获组from
和to
。有了它的帮助,需要从description
中提取值。
var match = Regex.Match(description, @": £(?<from>.*?) to £(?<to>.*?) ");
var from = match.Groups["from"].Value;
var to = match.Groups["to"].Value;
修改:添加了.Groups
属性。
答案 1 :(得分:1)
您可以使用Regex.Matches来提取薪资范围。
var matches1 = Regex.Matches(descriptionValue, "£([0-9,]+)");
for(int i=0; i < matches1.Count; i++)
Console.WriteLine("Parameters >> " + i + "\t" + matches1[i].Value);
此处您将拥有Regex.Matches
返回的结果的第一个位置和第二个位置。