るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.005秒)
トップページ > クエリ:texts[x] > 種類:ライブラリ[x]

別のキーワード

  1. element texts
  2. rexml/document texts
  3. texts rexml/document
  4. texts rexml::element

検索結果

rexml/parsers/sax2parser (19.0)

SAX2 と同等の API を持つストリーム式の XML パーサ。

...qname, attrs|
as << [qname, attrs]
}
texts
= []
parser.listen(:characters, ["a"]){|c| texts << c }
parser.parse
elements # => [["root", {"n"=>"0"}], ["a", {"n"=>"1"}], ["b", {"n"=>"2"}], ["a", {"n"=>"3"}]]
as # => [["a", {"n"=>"1"}], ["a", {"n"=>"3"}]]
texts
# => ["111", "333"]
//}

//emlist[仕...