REXML ruby ​​следующий элемент - PullRequest
0 голосов
/ 05 ноября 2018

Я пытаюсь получить элемент и следующий элемент из XML

<way>
 <nd ref="4979923479"/>
 <nd ref="4979923478"/>
 <nd ref="5721236634"/>
 <nd ref="5721236635"/>
 <nd ref="5721236636"/>
 <nd ref="5721236637"/>
 <nd ref="4979923477"/>
 <nd ref="5721236638"/>
 <nd ref="5721236639"/>
</way>

Вот, что я пытался сделать, но вместо того, чтобы "ставить i.attributes [" ref "]", мне нужно что-то вроде "ставит" # {i.attributes ["ref"]} -> i.next (i +1) .attributes [ "реф"]

require "rexml/document"
include REXML
inputFileName = ARGV[0]
file = File.new(inputFileName)
doc = Document.new(file)

doc.elements.each("way/nd") do |i|
    if i.next != nil
        puts i.attributes["ref"]
    end
end

Фактический вывод - это просто список всех найденных

4979923479
4979923478
5721236634
5721236635
5721236636
5721236637
4979923477
5721236638
5721236639

Желаемый результат:

4979923479 -> 4979923478
4979923478 -> 5721236634
5721236634 -> 5721236635
5721236635 -> 5721236636
5721236636 -> 5721236637
5721236637 -> 4979923477
4979923477 -> 5721236638
5721236638 -> 5721236639

1 Ответ

0 голосов
/ 06 ноября 2018

Я думаю, что вы хотите использовать next_element вместо. Это дает желаемый результат:

require "rexml/document"
include REXML
inputFileName = ARGV[0]
file = File.new(inputFileName)
doc = Document.new(file)

doc.elements.each("way/nd") do |i|
  next unless i.next_element
  puts "#{i.attributes["ref"]} -> #{i.next_element.attributes['ref']}"
end
...