るりまサーチ

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

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. rsa n
  3. rsa n=
  4. pop n_mails
  5. openssl n

キーワード

検索結果

Psych::Parser#handler -> Psych::Handler (15403.0)

セットされているイベントハンドラを返します。

...セットされているイベントハンドラを返します。

@see Psych::Parser#handler=...

Psych::ScalarScanner#parse_time(string) -> Time (15304.0)

文字列を Time オブジェクトに変換します。

...文字列を Time オブジェクトに変換します。

@param string 変換文字列...

Psych::Parser#handler=(val) (15203.0)

イベントハンドラをセットします。

...イベントハンドラをセットします。

@param val セットするハンドラ
@see Psych::Parser#handler=...

Psych::Parser::Mark#column -> Integer (15103.0)

行の先頭からの文字数。

行の先頭からの文字数。

Psych::Parser::Mark#index -> Integer (15103.0)

先頭からの文字数。

先頭からの文字数。

絞り込み条件を変える

Psych::Parser::Mark#line -> Integer (15103.0)

先頭からの行数。

先頭からの行数。

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

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

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

a
st = 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...