什么是在ruby中格式化xml字符串的最佳方法?

前端之家收集整理的这篇文章主要介绍了什么是在ruby中格式化xml字符串的最佳方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
给出一个像这样的xml字符串:
<some><nested><xml>value</xml></nested></some>

什么是最好的选择(使用ruby)将其格式化为可读的东西:

<some>
  <nested>
    <xml>value</xml>
  </nested>
</some>

解决方法

require "rexml/document"
include REXML

source ='<some><nested><xml>value</xml></nested></some>'
doc = Document.new( source )
doc.write( targetstr = "",2 ) #indents with 2 spaces
puts targetstr

#write写入任何带<<(字符串)的东西,所以这也是有效的:

doc.write( $stdout,2 )
doc.write( an_open_file,2 )
原文链接:https://www.f2er.com/ruby/267099.html

猜你在找的Ruby相关文章