Fairly straightforward question, but seems pretty hard to find what I want through search, here or Google.
Most people ask how you can select a node/ element with multiple conditions.
Like URL/books[title="Harry Potter" and author="JKRowling"]
I want to know if there's a way to shorten that syntax if you have multiple possibilities for one attribute.
In other words
URL/books[price=1 or price=2 or price=3 or price=8 or price=15]
Is there a way to shorten that syntax?
Like URL/books[price=1,2,3]
or [price in (1,2,3)]
---- obviously these are wrong, but would make things easier.