我们如何使用 Ruby检查字符串是否为HTML? 如果string包含html标记,则返回true,否则返回false If string contains html tag then returns true otherwise false 此测试(“string contains html”)不足以确定字符串是
如果string包含html标记,则返回true,否则返回false
If string contains html tag then returns true otherwise false
此测试(“string contains< html>”)不足以确定字符串是否为HTML.
How can we check the string is HTML or not using Ruby?
优秀的Nokogiri gem提供HTML验证.
$gem install nokogiri require 'nokogiri' Nokogiri::HTML.parse("<foo>bar</foo>").validate # => [#<Nokogiri::XML::SyntaxError...>, ...]