处理linq中的空格到xml

时间:2010-01-13 15:58:26

标签: .net linq linq-to-xml

我有一个xml文件,如下所示:

<xml>I need this text<notthistext>blahblah<notthistext></xml>

我通过这样做来得到文本:

var mycollection = from myNode in myDoc.descendents("xml") select new { test = Convert.ToString(myNode.Nodes().First())}

但问题是文件中不存在carrige返回和空格

这就是我得到的:

"/r/n      I need this text"

发生了什么!!!!! 我需要的是:

"I need this text"

1 个答案:

答案 0 :(得分:0)