mikeprestim
Programmer
I have an xml file please see below.
<part_data>
<form>
<sb_circuit_size>
<circuit_dim_type>
2
</circuit_dim_type>
<circuit_width>
219840000
</circuit_width>
<circuit_length>
251430000
</circuit_length>
</sb_circuit_size>
</form>
</part_data>
I need to extract the circuit_width and length tags. When I imort the xml file into crystal all items under the sb_circuit_size entry are grouped together. ie my string is
2 219840000 25143000
Is there any way of reporting on each tag, if not how do I split the above string into 3.
Thanks for any help. I am new to crystal.
Mike McMahon
<part_data>
<form>
<sb_circuit_size>
<circuit_dim_type>
2
</circuit_dim_type>
<circuit_width>
219840000
</circuit_width>
<circuit_length>
251430000
</circuit_length>
</sb_circuit_size>
</form>
</part_data>
I need to extract the circuit_width and length tags. When I imort the xml file into crystal all items under the sb_circuit_size entry are grouped together. ie my string is
2 219840000 25143000
Is there any way of reporting on each tag, if not how do I split the above string into 3.
Thanks for any help. I am new to crystal.
Mike McMahon