我有一個這樣的XML:xml在單個節點中解析多個單詞?
我可以從那裏得到全名,並將其添加與此有關的ListBox:
.......
.......
public class helperclass
{
string helper;
public string Helper
{
get {return helper; }
set {helper = value; }
}
}
.......
.......
//xml comes from internet
void something_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
XElement xml = XElement.Parse(e.Result);
var info = from somexml in xml.Descendants("item")
select new helperclass
{
Helper = (string)somexml.Element("name")
};
listBox1.ItemsSource = info;
.......
但我怎麼能取代「 - 」與換行符這樣我就可以得到:
夾頭
諾里斯
代替:
查克 - 諾里斯
,以及如何獲得唯一名字?
您是否嘗試過使用分割? – Venki