Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. XML / XSL
  4. Xml special character

Xml special character

Scheduled Pinned Locked Moved XML / XSL
htmlxmltutorialquestion
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Soundman32 2
    wrote on last edited by
    #1

    Sorry, forgot to tick the ignore HTML box: Can I get the special xml strings (< & etc) directly instead of being translated? For example, given the data "RCI>", the code: xmlReader.ReadStartElement("DATA"); data = xmlReader.ReadString(); xmlReader.ReadEndElement(); Gives: "RCI>". Can I get the raw "RCI>" and if so, how? Thanks

    M U 2 Replies Last reply
    0
    • S Soundman32 2

      Sorry, forgot to tick the ignore HTML box: Can I get the special xml strings (< & etc) directly instead of being translated? For example, given the data "RCI>", the code: xmlReader.ReadStartElement("DATA"); data = xmlReader.ReadString(); xmlReader.ReadEndElement(); Gives: "RCI>". Can I get the raw "RCI>" and if so, how? Thanks

      M Offline
      M Offline
      Murugesan G
      wrote on last edited by
      #2

      Try this u will get "RCI>" xmlReader.ReadInnerXml()

      1 Reply Last reply
      0
      • S Soundman32 2

        Sorry, forgot to tick the ignore HTML box: Can I get the special xml strings (< & etc) directly instead of being translated? For example, given the data "RCI>", the code: xmlReader.ReadStartElement("DATA"); data = xmlReader.ReadString(); xmlReader.ReadEndElement(); Gives: "RCI>". Can I get the raw "RCI>" and if so, how? Thanks

        U Offline
        U Offline
        User 3749986
        wrote on last edited by
        #3

        pass each string in the following function, and you will always get the right result:

                Public Function MakeXMLString(ByVal text As String) As String
                    text = text.Replace("&", "&amp;")
                    text = text.Replace("'", "&apos;")
                    text = text.Replace("""", "&quot;")
                    text = text.Replace("<", "&lt;")
                    text = text.Replace(">", "&gt;")
                    Return text
                End Function
        

        good luck!

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups