标签: ruby xpath nokogiri
假设我想查询XPath //*[@id=$href]。如何告诉nokogiri安全地绑定$href变量的值?
//*[@id=$href]
$href
这类似于REXML的XPath.first( node, "//*[@id=$href]", nil, {"href"=>"linktohere"})
XPath.first( node, "//*[@id=$href]", nil, {"href"=>"linktohere"})
答案 0 :(得分:0)
此功能刚刚(半小时前)被添加到Nokogiri,因此它应该出现在下一个版本中。