有一个像这样的HTML文字:
html = '<div class="foo"><span class="bar">text<br>with line break</span></div>'
doc = Nokogiri::HTML(html)
我希望得到文字text<br>with line break
。
目前我正在使用
doc.css("span").to_html.match(/<span .+?>(.*)<\/span>/){ $1 }
有更简单的方法吗?如果可能,我想避免使用正则表达式。