Given this XML, what XPath returns all elements whose prop attribute contains Foo (the first three nodes):
prop
Foo
John C is the closest, but XPath is case sensitive, so the correct XPath would be:
/bla/a[contains(@prop, 'Foo')]