Hi, I'm looking to select a collection of elements based on an array of ID names. I'm currently using a giant OR statement essentially:
//*[@id='apple']|//*[@id='orange']|//*[@id='banana']
But building that string manually seems messy. Is there something like a nice SQL-esque "WHERE IN [a,b,c]"
operator that I could be using?
I am using the HTTPAgilityPack for ASP.Net which I think equates to XPath1.o (feel free to correct me on that.)
Thanks.