るりまサーチ (Ruby 2.6.0)

最速Rubyリファレンスマニュアル検索!
6件ヒット [1-6件を表示] (0.045秒)
トップページ > バージョン:2.6.0[x] > クエリ:io[x] > クエリ:to_s[x] > ライブラリ:rexml[x]

別のキーワード

  1. _builtin to_s
  2. openssl to_der
  3. openssl to_s
  4. _builtin to_a
  5. openssl to_pem

検索結果

REXML::ParseException#to_s -> String (63310.0)

例外情報を文字列化して返します。

例外情報を文字列化して返します。

REXML::Declaration#to_s -> String (63307.0)

ノードを文字列化します。

ノードを文字列化します。

REXML::NotationDecl#to_s -> String (63307.0)

self を文字列化したものを返します。

self を文字列化したものを返します。

REXML::Child#previous_sibling=(other) (18322.0)

other を self の前の隣接ノードとします。

...other を挿入します。

@param other 挿入するノード

//emlist[][ruby]{
require 'rexml/document'

a = REXML::Element.new("a")
b = a.add_element("b")
c = REXML::Element.new("c")
b.next_sibling = c
d = REXML::Element.new("d")
b.previous_sibling = d

p a.to_s # => "<a><d/><b/><c/></a>"
//}...

REXML::NotationDecl (18058.0)

DTD の記法宣言を表すクラスです。

...DTD の記法宣言を表すクラスです。


//emlist[][ruby]{
require 'rexml/document'

doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE foo [
<!NOTATION type-image-svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!NOTATION type-image-g...

絞り込み条件を変える

REXML::Entity#write(out, indent = -1) -> () (40.0)

実体宣言を文字列化したものを out に書き込みます。

...実体宣言を文字列化したものを out に書き込みます。

@param out 出力先の IO オブジェクト
@param indent 利用されません。deprecated なパラメータです
@see REXML::Entity#to_s...