132件ヒット
[101-132件を表示]
(0.089秒)
別のキーワード
ライブラリ
- ビルトイン (12)
-
net
/ http (12) - optparse (12)
-
rexml
/ document (60) -
rubygems
/ specification (12) -
rubygems
/ version (24)
クラス
-
Encoding
:: UndefinedConversionError (12) -
Gem
:: Specification (12) -
Gem
:: Version (24) -
Net
:: HTTPResponse (12) - OptionParser (12)
-
REXML
:: Document (36) -
REXML
:: Instruction (24)
キーワード
- content (12)
- encoding (12)
-
error
_ char (12) -
http
_ version (12) -
rubygems
_ version (12) -
stand
_ alone? (12) - target (12)
-
to
_ s (12) - ver (12)
検索結果
先頭3件
-
REXML
:: Document # stand _ alone? -> String (221.0) -
XML 宣言の standalone の値を文字列で返します。
...XML 宣言の standalone の値を文字列で返します。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<e />
EOS
doc.stand_alone? # => "yes"
//}... -
REXML
:: Instruction # content -> String | nil (221.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-... -
REXML
:: Instruction # target -> String (221.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"?>
<root />
EOS
doc[2] # => <?p-i xml-stylesheet ...?>
doc[2].target # => "xml-st...