vote up 0 vote down star

I have XML data like this:

<search ver="3.0">
  <loc>Birmingham, AL</loc> 
  <loc>Gulf Shores, AL</loc> 
  <loc>Alabama, NY</loc> 
  <loc>Abbeville, AL</loc> 
  <loc>Abernant, AL</loc> 
</search>

I would like to return the name of the places. How may I extract this data using Visual Basic?

flag
I don't see how that's XML. – John W Nov 1 at 5:36
I fixed your formatting. Don't roll it back, please. – jason Nov 1 at 5:37
@John W - it's there, but the OP keeps overwriting the edits that people have provided to show the XML formatted properly – John Rasch Nov 1 at 5:37
I keep adding the xml code but it wont display?it only display the innerhtml – hubby Nov 1 at 5:38
thanks man cool – hubby Nov 1 at 5:38
show 2 more comments

3 Answers

vote up 0 vote down

Not sure why you don't do this in your XML, but maybe you have a good reason:

<loc>
    <city>Birmingham</city>
    <state>AL</state>
</loc>

But anyway, if you get the loc elements in your original XML, you can use the Split method to pull it apart.

link|flag
vote up 0 vote down

I got it:


public function returnstring()as string() 
Dim suggestions As List(Of String) = New List(Of String)
Dim baseUrl As String = "path to my xml file"
settings.IgnoreWhitespace = True
settings.IgnoreComments = True

 Using reader As XmlReader = XmlReader.Create(url, settings)
                While (reader.Read())
                    If (reader.NodeType = XmlNodeType.Element And reader.LocalName = "loc" ) Then

                    suggestions.Add(reader.ReadElementString("loc"))

                End If
            End While

End Using return suggestions.toarray()

end function

link|flag
vote up 0 vote down

// Easy way:

Dim docxml As New DOMDocument30
Dim element As IXMLDOMElement

Dim Node As IXMLDOMNode

docxml.Load app.path & "configiw.xml"
text1.text = docxml.getElementsByTagName("loc").Item(0).Text 
'Zero is the number of the line, you can use a while or a for
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.