Tagged Questions
1
vote
1answer
178 views
xQuery, how to get text from node with childs?
This line:
//div[@id="transactions"]/p
gives this output (from html content I'm trying to get):
How can i make this query return a string like this (the content if each <p> in it's own ...
-2
votes
1answer
135 views
Add text to a XML node in F#
This is my XML:
<location>
<hotspot name="name1" X="444" Y="518" />
<hotspot name="name2" X="542" Y="452" />
<hotspot name="name3" X="356" Y="15" />
</location>
...