https://github.com/lifenjoiner/getxmlx
A simple xml querier for Windows.
https://github.com/lifenjoiner/getxmlx
cli querier windows xml
Last synced: 2 months ago
JSON representation
A simple xml querier for Windows.
- Host: GitHub
- URL: https://github.com/lifenjoiner/getxmlx
- Owner: lifenjoiner
- License: mit
- Created: 2022-02-09T15:01:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-10-12T14:34:32.000Z (over 3 years ago)
- Last Synced: 2025-04-06T13:48:09.128Z (about 1 year ago)
- Topics: cli, querier, windows, xml
- Language: C++
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
- License: LICENSE
Awesome Lists containing this project
README
getxmlX
A simple xml querier for Windows.
Usage: getxmlX
operation examples:
selectNodes(data).length
selectSingleNode(data).getAttribute(href)
selectSingleNode(data).text
selectSingleNode(data).childNodes.length
selectSingleNode(b:book[@id='bk102'])
selectSingleNode(string[@name='permlab_callPhone']).text
selectNodes(permission[contains(@android:name,'CONTACTS')])
selectNodes(string[starts-with(@name,'permlab_')])
DOM
[DOM.]childNodes
getElementsByTagName(data).item(0).getAttribute(href)
SelectionNamespaces("xmlns:a='http://myserver.com' xmlns:b='http://yourserver.com'").selectNodes(a:root/b:branch)
Tips:.
Outputs OEM ANSI.
All top namespaces selected.
XPath functions: contains, starts-with.
Home
https://github.com/lifenjoiner/getxmlX