36件ヒット
[1-36件を表示]
(0.007秒)
種類
- インスタンスメソッド (24)
- クラス (12)
クラス
-
REXML
:: Instruction (24)
キーワード
- Instruction (12)
- content (12)
- target (12)
検索結果
先頭3件
-
REXML
:: Instruction (14.0) -
XML 処理命令(XML Processing Instruction, XML PI)を表すクラス。
...by]{
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=\"style.css\"... -
REXML
:: Instruction # content -> String | nil (14.0) -
XML 処理命令の内容を返します。
...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 # => "type=\"text/css\" href=\"style... -
REXML
:: Instruction # target -> String (14.0) -
XML 処理命令のターゲットを返します。
...by]{
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=\"style.css\"...