• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

parsing numeric & special characters

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
I have problem parsing my XML file that contains tag with numeric and special characters.

eg. I have tag like <192.111.7.163> representing an IP address.

Is there another way to write same address in XML. I am using DOM parser.

Thanks in advance
 
Ranch Hand
Posts: 5040
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Dipesh Shah:
Hi all,
I have problem parsing my XML file that contains tag with numeric and special characters.

eg. I have tag like <192.111.7.163> representing an IP address.

Is there another way to write same address in XML. I am using DOM parser.

Thanks in advance



Personally, I would write this as:

<IPAddress>192.111.7.163</IPAddress>

or

<IPAddress value="192.111.7.163"/>

depending on what you want to do.
Since this is a variable thing (my assumption),
you don't want to represent this value as an element.

- m
 
A "dutch baby" is not a baby. But this tiny ad is baby sized:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic