Try this:
//person[@id='abc123']/@*[name()='weight' or name()='haircolor']
If you’re using an XPath 2.0 processor, you may also use a prettier option:
//person[@id='abc123']/(@haircolor|@weight)`
Try this:
//person[@id='abc123']/@*[name()='weight' or name()='haircolor']
If you’re using an XPath 2.0 processor, you may also use a prettier option:
//person[@id='abc123']/(@haircolor|@weight)`