J
James
In certain applications, it is necessary to distinguish between an
emptyString vs. a null value. What is the appropriate way to make
this distinction in XML?
<elementName></elementName>
looks like a zero-length string (emptyString) but will evaluate to
null.
The data element in question may have its own datatype (string, title,
name, etc.) but also need to hold an emptyString value.
emptyString vs. a null value. What is the appropriate way to make
this distinction in XML?
<elementName></elementName>
looks like a zero-length string (emptyString) but will evaluate to
null.
The data element in question may have its own datatype (string, title,
name, etc.) but also need to hold an emptyString value.