Parse text doc into xml ?
Hi All
I have an xml file like this
<Entry>
<Key></Key>
<Down></Down>
</Entry>
<Entry>
<Key></Key>
<Down></Down>
</Entry>
</Controls>
And a text document like this
Throttle_20,F2+2
Throttle_30,F2+3
Throttle_40,F2+4
Throttle_50,F2+5
Throttle_60,F2+6
Throttle_70,F2+7
Throttle_80,F2+8
Throttle_90,F2+9
What i need to be able to do is to add the first element of the text document to the <key></key> and the second element to <down></down> of the xml file ...
How would i best go about this please ?
Many Thanks