You want to check if any scalar value of the sequence belongs.
In XPath 1.0 (without sequence data type):
PropertyType[contains(' 1 2 10 11 ',concat(' ',@PropertyType,' ')]
In XPath 2.0 (with sequence data type):
PropertyType[@PropertyType = (1,2,10,11)]
Note Experimental comparison.
user357812
source share