I am parsing an XML file with a DOM parser and here is the corresponding .dtd:
<!ELEMENT Concept (%ConceptReference;, TermList)>
...
<!ENTITY % ConceptReference "(ConceptUI,ConceptName,ConceptUMLSUI?)">
I already parsed ConceptReference
into an EntityReference
object. The point I am stuck is: how do I get ConceptName
and ConceptUI
?