Frage

Whether XML element attribute name can be empty:

<?xml version="1.0" encoding="utf-8"?>
<test>
  <tables>
    <gg qqq="">
      <ss ""=""/>
      <mm ""=""/>
    </gg>
  </tables>
</test>

I am getting an exception I cant to load this. Is this possible?

Keine korrekte Lösung

Andere Tipps

No, this will produce invalid XML. Attribute must have both name and value. How do you image opposite?

No this can not be done.

XML has empty element concept[If you are trying to implement that].

In that whole element is kept empty and said to be null as follow>>

<abc></abc>
<DefaultTaxPrice></DefaultTaxPrice>

Short answer, no. If you want to add value but not know what is the name of the value in XML, insert in into the body instead.

<ss>value</ss>

This way, your ss will be treated as a value

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top