使用Ruby分析HTML文件标题

时间:2018-09-12 04:24:33

标签: html ruby parsing nokogiri

我有一个要在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标题视为其下标题的孩子,将h3标题视为其下标题的孩子,等等...

我想将此信息存储在哈希数组中,这样

[ { 
   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"} 

但不捕获我需要捕获的类似父项的信息。

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:0)

traverse是个好主意。您想跟踪最新的h1,h2,h3等:...

@state = {}
records = []
nokogiri_object.traverse { |node|
  next unless desired_headings.include?(node.name)
  @state[node.name] = node.text
  case node.name
    when 'h1'
      records << {
        h1: @state['h1']
      }
    when 'h2'
      records << {
        h1: @state['h1'],
        h2: @state['h2'],
      }

  end
}