I have xml data like this
<ce:affiliation id="aff1">
<ce:label>a</ce:label>
<ce:textfn>Department of Urology, Radboud University Nijmegen Medical Center, Nijmegen, The Netherlands</ce:textfn>
<sa:affiliation>
<sa:organization>Department of Urology</sa:organization>
<sa:organization>Radboud University Nijmegen Medical Center</sa:organization>
<sa:city>Nijmegen</sa:city>
</sa:affiliation>
and ect..
nw i want read the text inside the "sa:affiliation" while reading text, first read text in tag inside sa:affilliation and make text like "Department of Urology, Radboud University Nijmegen Medical Center, Nijmegen" in this "," separation format and compare this text with text which inside "ce:textn" .... "/ce:textn"
like is i need to compare each ce:affillition tag with sa:affilliation for multiple files and if any mismatch need tell to user.
Your question is a bit vague. It is not clear where each fragment of XML goes. One file? several files? One fragment per file? Several? If the data is in several files, how do you link a
ce:affilliation
element with the correspondingsa:affilliation
, especially if what you are checking is whether the 2 texts match? Why is there no country insa:affilliation
? Where are the namespaces declared?Assuming the 2 pieces of data are in 2 files, and the namespace prefixes do not change: