有没有办法使用Nokogiri的xpath()完成以下操作?
doc.xpath("//pod[@id=or('anid','anotherid')]")
解决方法
试试doc.xpath(“// pod [@ id =’anid’或@ id =’anotherid’]”)
doc.xpath("//pod[@id=or('anid','anotherid')]")