1111件ヒット
[1101-1111件を表示]
(0.135秒)
別のキーワード
ライブラリ
- ビルトイン (79)
- json (24)
-
net
/ http (180) - optparse (444)
- psych (12)
-
rdoc
/ parser / ruby (12) -
rexml
/ parsers / pullparser (204) -
ripper
/ filter (36) -
ripper
/ lexer (12) - uri (72)
-
webrick
/ httprequest (12) -
webrick
/ httpresponse (12) -
webrick
/ https (12)
クラス
-
JSON
:: Parser (12) -
Net
:: HTTPGenericRequest (72) -
Net
:: HTTPResponse (48) - Object (30)
- OptionParser (336)
-
OptionParser
:: ParseError (12) -
Psych
:: Nodes :: Node (12) -
RDoc
:: Parser :: Ruby (12) -
REXML
:: Parsers :: PullEvent (180) -
REXML
:: Parsers :: PullParser (24) -
Ripper
:: Filter (36) -
Ripper
:: Lexer (12) -
RubyVM
:: AbstractSyntaxTree :: Node (49) -
URI
:: Generic (72) -
WEBrick
:: HTTPRequest (24) -
WEBrick
:: HTTPResponse (12)
モジュール
- Kernel (12)
-
Net
:: HTTPHeader (60) -
OptionParser
:: Arguable (96)
キーワード
- + (12)
- == (12)
- JSON (12)
- [] (24)
- absolute (12)
- absolute? (12)
- attlistdecl? (12)
-
basic
_ auth (12) - body (24)
- body= (12)
-
body
_ stream (12) -
body
_ stream= (12) - cdata? (12)
- children (7)
- chunked? (12)
- comment? (12)
- doctype? (12)
- elementdecl? (12)
- empty? (12)
-
end
_ element? (12) - entity (12)
- entitydecl? (12)
-
event
_ type (12) -
first
_ column (7) -
first
_ lineno (7) - getopts (36)
-
has
_ next? (12) - inspect (7)
- instruction? (12)
- key? (12)
-
last
_ column (7) -
last
_ lineno (7) - load (12)
- merge (12)
- notationdecl? (12)
- on (144)
-
on
_ XXX (12) -
on
_ default (12) -
on
_ head (12) -
on
_ tail (12) - order (48)
- order! (48)
- parse! (12)
- permute (24)
- permute! (24)
-
proxy
_ basic _ auth (12) -
read
_ body (24) - relative? (12)
-
request
_ body _ permitted? (12) -
response
_ body _ permitted? (12) - scan (12)
-
set
_ backtrace (12) -
start
_ element? (12) -
sub
_ type (12) - tag (12)
- text? (12)
- then (14)
- type (7)
-
unparsed
_ uri (12) - xmldecl? (12)
-
yield
_ self (16)
検索結果
-
Psych
:: Nodes :: Node # tag -> String | nil (19.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...