108件ヒット
[101-108件を表示]
(0.073秒)
ライブラリ
- openssl (24)
-
rexml
/ document (84)
クラス
-
OpenSSL
:: X509 :: Request (24) -
REXML
:: Attribute (36) -
REXML
:: Attributes (36) -
REXML
:: Element (12)
キーワード
- << (12)
- []= (12)
-
add
_ attributes (12) - attributes= (12)
- namespace (12)
- prefix (12)
-
to
_ string (12)
検索結果
-
REXML
:: Attribute # to _ string -> String (13.0) -
"name='value'" という形式の文字列を返します。
..."name='value'" という形式の文字列を返します。
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").to_string # => "ns:r='rval'"
//}...