るりまサーチ

最速Rubyリファレンスマニュアル検索!
33件ヒット [1-33件を表示] (0.216秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:n[x] > クエリ:a[x] > クラス:REXML::Instruction[x]

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. rsa n
  3. rsa n=
  4. openssl n
  5. openssl n=

ライブラリ

キーワード

検索結果

REXML::Instruction#content=(value) (9302.0)

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

...XML 処理命令の内容を変更します。

@param value 新たなデータ(文字列)...

REXML::Instruction#target -> String (9202.0)

XML 処理命令のターゲットを返します。

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

REXML::Instruction#target=(value) (9102.0)

XML 処理命令のターゲットを value に変更します。

...XML 処理命令のターゲットを value に変更します。

@param value 新たなターゲット(文字列)...