るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.143秒)

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. rsa p
  5. kernel p

ライブラリ

クラス

検索結果

Psych::Parser#parse(yaml) -> self (27319.0)

YAML ドキュメントをパースし、イベントハンドラに イベントを逐次通知します。

...
YAML
ドキュメントをパースし、イベントハンドラに
イベントを逐次通知します。

@see Psych::Parser.new, Psych::Handler, Psych::Parser#handler...

Psych::Nodes::Node#tag -> String | nil (3037.0)

ノードに付加されたタグを返します。

...されていない場合は nil を返します。

ast = Psych.parse(<<EOS)
---
- !!str a
- b
EOS

p
ast.root.children[0].value # => "a"
p
ast.root.children[0].tag # => "tag:yaml.org,2002:str"

p
ast.root.children[1].value # => "b"
p
ast.root.children[1].tag # => nil...