vote up 0 vote down star

can we use a number as text node in XML file? for example

<2>
 <abi>Zen</abi>
</2>

it is giving the error as follows

flag
what is the error? – linjunhalida Mar 27 at 5:22
The text node in that XML is "Zen". What you really want to know is if you can use a number as an element name. – Robert Rossney Mar 29 at 20:27

3 Answers

vote up 6 vote down

XML elements must follow these naming rules:

* Names can contain letters, numbers, and other characters
* Names cannot start with a number or punctuation character
* Names cannot start with the letters xml (or XML, or Xml, etc)
* Names cannot contain spaces

http://www.w3schools.com/xml/xml_elements.asp

link|flag
Thank you so much for your information. – Abisha Mar 27 at 7:29
If this answer helped. You can mark it as accepted answer :) – Shoban Mar 27 at 8:04
vote up 1 vote down

read the xml spec:

The ampersand character (&) and the left angle bracket (<) MUST NOT appear in their literal form, except when used as markup delimiters, or within a comment, a processing instruction, or a CDATA section. If they are needed elsewhere, they MUST be escaped using either numeric character references or the strings " &amp; " and " &lt; " respectively. The right angle bracket (>) may be represented using the string " &gt; ", and MUST, for compatibility, be escaped using either " &gt; " or a character reference when it appears in the string " ]]> " in content, when that string is not marking the end of a CDATA section.

link|flag
vote up 0 vote down

Short answer: No.

You could use something like this, though

<element2>
  <abi>Zen</abi>
</element2>

But this would make for a really ugly XML schema, where you would ultimately be limited to a maximum number of elements.

I think you should go with somethink like this:

<element number="2">
  <abi>Zen</abi>
</element>
link|flag

Your Answer

Get an OpenID
or

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