Displaying 1 result from an estimated 1 matches for "piir".
Did you mean:
pair
2003 Feb 21
1
question about XML (package)
...file:
<?xml version="1.0"?>
<fields>
<v1>1 </v1>
<v2> 2 </v2>
<v3> 3</v3>
</fields>
i.e. I have three fields v1, v2 and v3 which differ only by spacing.
Now when reading it as
> a <- xmlTreeParse("/home/otoomet/tyyq/Taani-piir/andmed/test.xml")
> a$doc$children$fields
<fields>
<v1>
</v1>
<v2>
2
</v2>
<v3>
3
</v3>
</fields>
you can see that field v1 is empty. Is it my misinterpretation, or a
problem with the library?
Thanks in advance,
Ott
----...