1
我正在使用rake任務中的xml-simple gem來解析數據庫轉儲的內容。問題在於數據庫xml文件包含像標題中那些導致xml-simple崩潰的字符。有沒有解決這個問題?解析<first_name>João</first_name>使用xml-simple
我正在使用rake任務中的xml-simple gem來解析數據庫轉儲的內容。問題在於數據庫xml文件包含像標題中那些導致xml-simple崩潰的字符。有沒有解決這個問題?解析<first_name>João</first_name>使用xml-simple
引入nokogiri似乎工作:
require 'nokogiri'
xml =<<ENDOFxML
<test>
<first_name>João</first_name>
</test>
ENDOFxML
doc = Nokogiri::XML.parse(xml)
doc.xpath('//first_name').each do |node|
puts node.inner_text
end
#Output: João