Copy result XML in XPath
Posted: Mon Jul 10, 2006 9:58 am
Currently when you save the XPath selection results, you get something like this:
I'd like to see the option to save the XML fragments selected by the expression. Give the source XML
expression "/*" should save:
Expression "//qux":
i.e. non-well-formed XML, entities separated by a line feed.
Expression "//@*":
Code: Select all
SystemID: C:\Program Files\Oxygen XML Editor 7.2\Untitled2.xml
Location: 2:0
Description: /foo[1]/@bar -
Code: Select all
<foo bar="baz">
<qux bar="quxx"/>
<qux bar="quxxx"/>
</boo>
Code: Select all
<foo bar="baz">
<qux bar="quxx"/>
<qux bar="quxxx"/>
</boo>
Code: Select all
<qux bar="quxx"/>
<qux bar="quxxx"/>
Expression "//@*":
Code: Select all
bar="baz"
bar="quxx"
bar="quxxx"