Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 360801
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T12:31:25+00:00 2026-05-12T12:31:25+00:00

Suppose I have some XmlElement ; let’s call it element . If I want

  • 0

Suppose I have some XmlElement; let’s call it element. If I want to get all of the child nodes of that element, I can call element.ChildNodes. If I want the text of the element and all its children, then I can go with element.InnerText.

However, suppose I have some XML that looks like this:

<TopElement attr1="value1" attr2="value2">
    This is the text I want.
    <ChildElement1>This is text I don't want.</ChildElement1>
    <ChildElement2>This is more text I don't want.</ChildElement2>
</TopElement>

If I go with element.InnerText, what I get is this:

This is the text I want.This is text I
don’t want.This is more text I don’t
want.

If I want just the text within TopElement but NOT any of its children, I can do this:

Dim txt As String
For Each child As Xml.XmlNode In XmlElement.ChildNodes
    If TypeOf child Is Xml.XmlText Then
        txt = child.InnerText
        Exit For
    End If
Next

But this seems quite silly to me. Surely there is a better way?

EDIT: Sorry I didn’t specify this initially: I’m looking for a solution not involving LINQ (we’re in the Dark Ages over here with .NET 2.0).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T12:31:25+00:00Added an answer on May 12, 2026 at 12:31 pm

    You can use an XPath expression that specifically looks for a text node (sorry for the C#)

    XmlText text = doc.SelectSingleNode("/TopElement/text()") as XmlText;
    if (text != null)
    {
        Console.WriteLine(text.Value);
    }
    

    (Where doc is an XmlDocument containing your XML)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lets suppose that I have some pages some.web/articles/details/5 some.web/users/info/bob some.web/foo/bar/7 that can call a
Suppose I have some number a , and I want to get vector [
Let's suppose I have some element and also have some picture in folder. So
Suppose I have some pointer, which I want to reinterpret as static dimension array
suppose I have this string: some striinnngggg <a href=something/some_number>linkk</a> soooo <a href=someotherthing/not_number>asdfsadf</a> I want
Suppose I have a Collection of some kind that itself contains Collections; e.g., Dictionary(Of
Suppose we have some class A that implements some interface I I i =
Suppose you have some <div> s: <div id=div_num1></div> <div id=div_num2></div> <div id=div_num3></div> You can
Suppose you have some method that could be made static, inside a non-static class.
Suppose I have some schema: <xsd:schema ...> <xsd:element name=foo> <xsd:complexType> <xsd:sequence> <xsd:element name=fooElement type=xs:string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.