Nokogiri:查找第一次出现没有class属性的节点

时间:2013-02-20 12:26:47

标签: ruby nokogiri

在下面的代码段中,我想第一次出现< b>没有类属性的标记。

<html>
<body>
     <p>This is the <b class="abc">text in bold with a class attribute</b> and the following is <b> text in bold without a class attribute</b>
</body>
</html>   

任何指针?

1 个答案:

答案 0 :(得分:7)

那将是:

doc.at('b:not([class])')