Can an XML attribute be the empty string?
In other words, is "<element att="" />" valid XML?
|
|
Can an XML attribute be the empty string? In other words, is "<element att="" />" valid XML?
|
|||
|
|
|
|
You can create an empty attribute via attname="" You can create an empty element via
or
|
||
|
|
|
|
Yes, this is well-formed XML. An easy way to test this (on Windows) is to save the sample in a |
||||||||
|
|
|
It is worth nothing that this is an XML attribute, not an element. An empty element would be:
which is not valid XML. |
||||
|
|
|
It should also be noted that some XML parsers will throw an error on empty string nodes and attributes instead of returning null or an empty string. So even though it might be valid, it would be better to leave it out altogether. |
||||||||
|
|
|
Yes - element content can be empty, and as you used in your question there's even the special Empty-Element tag notation:
Except when interop with SGML is necessary, the above is equivalent to
Attribute values can also be empty, but attributes must always be followed by an '=' and a quoted string, even if the string contains no characters. The definitive place for this information is the XML spec: http://www.xml.com/axml/testaxml.htm Here's what the Annotated XML Reference has to say about empty elements:
note: the discussion on empty elements was due to the original wording of the posted question. |
|||
|
|