るりまサーチ (Ruby 2.4.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.037秒)
トップページ > クエリ:|[x] > クエリ:-[x] > クエリ:encoding[x] > バージョン:2.4.0[x] > クラス:REXML::Instruction[x]

別のキーワード

  1. _builtin |
  2. ipaddr |
  3. set |
  4. falseclass |
  5. integer |

ライブラリ

検索結果

REXML::Instruction#content -> String | nil (715.0)

XML 処理命令の内容を返します。

XML 処理命令の内容を返します。

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/css" href="style.css"?>
<?foobar?>
<root />
EOS
doc[2] # => <?p-i xml-stylesheet ...?>
doc[2].target # => "xml-stylesheet"
doc[2].content...