Hi all
if I have the following XML file
<attr tag="00020000" vr="UL" len="4">180</attr>
<attr tag="00020001" vr="OB" len="2">00\01</attr>
*how I can read it using xmlloader, I mean how I can read for examlpe the
value of tag and vr which are inside the attr attribute *?
I already wrote the following
A = load 'dicoms/' using org.apache.pig.piggybank.storage.XMLLoader('attr')
as (x:chararray);
But that will consider all the line as a chararray so how i can read the
values of tag, vr and attr ??
best regards