222件ヒット
[201-222件を表示]
(0.117秒)
別のキーワード
ライブラリ
- ビルトイン (162)
-
rexml
/ document (60)
クラス
- Array (21)
-
Encoding
:: Converter (24) -
REXML
:: Document (36) -
REXML
:: Instruction (24) - String (117)
キーワード
- << (12)
- concat (21)
- content (12)
-
insert
_ output (12) - pack (21)
- replacement= (12)
- scrub (36)
- scrub! (36)
-
stand
_ alone? (12) - target (12)
- unpack (12)
- version (12)
検索結果
-
REXML
:: Instruction # content -> String | nil (13.0) -
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 # => "t... -
REXML
:: Instruction # target -> String (13.0) -
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"?>
<root />
EOS
doc[2] # => <?p-i xml-stylesheet ...?>
doc[2].target # => "xml-stylesheet"
doc[2].content # => "type=\...