最前面:
using System.Xml;
代码:
XmlDocument xdoc = new XmlDocument();
xdoc.LoadXml(你那个字符串);
string code = xdoc.DocumentElement.InnerText; //这货应该就是你要的0001234了
http://www.cnblogs.com/luckdv/articles/1728088.html?login=1
建议使用linq to xml
首先引入using System.Xml.Linq;
然后在方法里
XElement root = XElement.Parse(@" 0001234
");
string value=root .Element("code").Value;
如果你想将字符串变成XML就不能带有""
这个标记的是这个文档是XML格式,而不是这个字符串是XML格式