替换新属性的值

时间:2012-09-11 12:05:51

标签: c# xml xml-parsing

我的输入是一个字符串,如:<Identification LastName="Bornery" Name="John" Age="23"/>,我想将其转换为Xml,然后将其更改为:<Identification LastName="Bornery" Name="John" Age="40"/>

1 个答案:

答案 0 :(得分:1)

这应该做,但也有很多其他方法。什么是最适合你的将需要更多信息。

var xd = XDocument.Parse(@"<Identification LastName=""Bornery"" Name=""John"" Age=""23""/>");
xd.Element("Identification").Attribute("Age").Value = "40";
string result = xd.ToString();