【发布时间】:2019-02-16 15:22:21
【问题描述】:
我有一个要在 Ruby 中解析的 HTML 文件。 HTML 文件非常简单,只包含标题、链接和段落。我正在使用 Nokogiri 进行解析。
我正在处理的一个 HTML 文件的示例是:
<h1><a id="Dog_0"></a>Dog</h1>
<h2><a id="Washing_dogs_3"></a>Washing Dogs</h2>
<h3>Use soap</h3>
<h2><a id="Walking_dogs_1"></a>Walking Dogs</h2>
我需要将h1 标题视为父标题,h2 标题作为其下的 h1 标题的子标题,h3 标题作为其下h2 标题的子标题,等等。
我想将此信息存储在一个哈希数组中,这样
[ {
h1: "Dog",
link: "Dog_0",
},{
h1: "Dog",
h2: "Washing Dogs",
link: "Dog_0#Washing_dogs_3"
},{
h1: "Dog",
h2: "Washing Dogs",
h3: "Use Soap",
link: "Dog_0#Washing_dogs_3"
},{
h1: "Dog",
h2: "Walking Dogs"
link: "Dog_0#Walking_dogs_1"
}]
由于没有节点是嵌套的,我认为我不能使用任何有用的方法来查找子节点。到目前为止我所拥有的是:
array_of_records = []; #Store the records in an array
desired_headings = ['h1','h2','h3','h4','p'] # headings used to split html into records
Dir.glob('*.html') { |html_file|
nokogiri_object = File.open(html_file) { |f| Nokogiri::HTML(f, nil, 'UTF-8') }
nokogiri_object.traverse { |node|
next unless desired_headings.include?(node.name)
record = {}
record[node.name.to_sym] = node.text.gsub(/[\r\n]/,'').split.join(" ")
link = node.css('a')[0]
record[:link] = link['id'] if !link.nil?
array_of_records << record
}
此代码设法捕获我正在解析的标题并将其内容存储在哈希中
{heading: "content"}
但没有捕获我需要捕获的类似父级的信息。
【问题讨论】:
标签: html ruby parsing nokogiri