Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
473 views
in Technique[技术] by (71.8m points)

c# - Obtaining InnerText of just the current node with XmlNode

I have an XMLNode whose body looks like this: (via OpenCalais)

    <SocialTag importance="2">Signal processing
<originalValue>Signal processing</originalValue>
</SocialTag>

When I call XMLMNode.InnerText on it, I get back:

SignalprocessingSignalprocessing

However, I only want the InnerText from the tag itself, and not the InnerText of the child 'original value' node.

When I call XMLNode.Value, it returns null.

How can I get just the InnerText of this node, without concatenating all of the InnerTexts of other child nodes?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The text inside the XmlNode is actually another XmlNode of type text. This should work:

socialTagNode.ChildNodes[0].Value

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...