Skip to content

Instantly share code, notes, and snippets.

@evanlenz
Created July 14, 2011 22:37
Show Gist options
  • Save evanlenz/1083640 to your computer and use it in GitHub Desktop.
Save evanlenz/1083640 to your computer and use it in GitHub Desktop.
<doc>
<group type="widget">
<item type="sprocket">...</item>
...
</group>
<group type="employee">
<item type="executive">...</item>
...
</group>
<group type="place">
<item type="city">...</item>
...
</group>
</doc>
//group[@type eq 'widget']/item[@type eq 'sprocket']
//widgets/sprocket
<doc>
<widgets>
<sprocket>...</sprocket>
...
</widgets>
<employees>
<executive>...</executive>
...
</employees>
<places>
<city>...</city>
...
</places>
</doc>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment