LoginSignup
3
4

More than 5 years have passed since last update.

RubyからXMLファイルを動的に編集する

Last updated at Posted at 2017-07-04

はじめに

ベストプラクティスでない可能性があるので、ご指摘あればコメントお願いします。

環境

  • Ruby 2.4.1

編集

編集前XMLファイル

test.xml
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope>
   <SOAP-ENV:Body>
      <ns1:part>
       ここを変えたい
      </ns1:part>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

rubyファイル

test.rb
require 'rexml/document'

file = File.open('test.xml')
doc = REXML::Document.new(file)

element = document.elements['SOAP-ENV:Envelope/SOAP-ENV:Body/ns1:part'] #要素を取得

element.text = nil #テキスト削除
element.add_text("編集成功!")

File.write('test.xml', document)

編集後XMLファイル

test.xml
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope>
   <SOAP-ENV:Body>
      <ns1:part>
       編集成功!
      </ns1:part>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4