720件ヒット
[1-100件を表示]
(0.098秒)
ライブラリ
- ビルトイン (72)
-
cgi
/ html (48) - csv (12)
-
net
/ imap (12) -
rake
/ rdoctask (240) -
rexml
/ document (216) -
rexml
/ parsers / pullparser (12) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (24) -
webrick
/ httpresponse (72)
クラス
- CSV (12)
- IO (12)
-
Net
:: IMAP (12) -
REXML
:: DocType (192) -
REXML
:: Document (12) -
REXML
:: Parsers :: PullEvent (12) -
REXML
:: Text (12) -
Rake
:: RDocTask (240) - String (48)
-
WEBrick
:: HTTPResponse (72)
モジュール
-
CGI
:: Html3 (12) -
CGI
:: Html4 (12) -
CGI
:: Html4Fr (12) -
CGI
:: Html4Tr (12) - Enumerable (12)
-
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (24)
キーワード
- [] (12)
- add (12)
-
attribute
_ of (12) -
attributes
_ of (12) - body= (12)
- chunk (12)
- chunked= (12)
- clone (12)
-
content
_ length (12) -
content
_ length= (12) - context (12)
- define (12)
- doctype (96)
- doctype? (12)
-
doctype
_ end (12) - entities (12)
- entity (12)
- external (12)
- external= (12)
-
external
_ id (12) - fetch (12)
- hex (12)
- ioctl (24)
- main (12)
- main= (12)
- name (24)
- name= (12)
- namespaces (12)
-
node
_ type (12) - notation (12)
- notations (12)
-
option
_ list (12) -
option
_ string (12) - public (12)
- quote (12)
-
rdoc
_ dir (12) -
rdoc
_ dir= (12) -
rdoc
_ files (12) -
rdoc
_ files= (12) - system (12)
- template (12)
- template= (12)
- title (12)
- title= (12)
-
to
_ f (12) -
to
_ i (12) -
to
_ s (12) - write (12)
検索結果
先頭5件
-
String
# oct -> Integer (24274.0) -
文字列を 8 進文字列であると解釈して、整数に変換します。
...//emlist[例][ruby]{
p "10".oct # => 8
p "010".oct # => 8
p "8".oct # => 0
//}
oct は文字列の接頭辞 ("0", "0b", "0B", "0x", "0X") に応じて
8 進以外の変換も行います。
//emlist[例][ruby]{
p "0b10".oct # => 2
p "10".oct # => 8
p "010".oct # => 8
p "0x10".oct # => 1......//emlist[例][ruby]{
p "-010".oct # => -8
p "-0x10".oct # => -16
p "-0b10".oct # => -2
p "1_0_1x".oct # => 65
//}
@see String#hex, String#to_i, String#to_f,
Kernel.#Integer, Kernel.#Float
逆に、数値を文字列に変換するにはKernel.#sprintf,
String#%, Integer#to_s を... -
REXML
:: Document # doctype -> REXML :: DocType | nil (12401.0) -
文書の DTD を返します。
...文書の DTD を返します。
文書が DTD を持たない場合は nil を返します。... -
REXML
:: Text # doctype -> REXML :: DocType | nil (12401.0) -
テキストノードが属する文書の DTD を返します。
...テキストノードが属する文書の DTD を返します。
そのような文書(REXML::Document)が存在しない、すなわち
テキストノードの親ノードを辿っても REXML::Document に到達しない、
場合には nil を返します。
@see REXML::DocType... -
Rake
:: RDocTask # template=(template) (12401.0) -
使用するテンプレートをセットします。
...使用するテンプレートをセットします。
@param template 使用するテンプレートを指定します。... -
REXML
:: DocType # entities -> { String => REXML :: Entity } (12301.0) -
DTD で宣言されている実体の集合を Hash で返します。
...DTD で宣言されている実体の集合を Hash で返します。
返される Hash は実体参照名をキーとし、対応する REXML::Entity オブジェクト
を値とするハッシュテーブルです。
これには、XML のデフォルトの実体(gt, lt, quot, apos)も含まれ......。
//emlist[][ruby]{
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE foo [
<!ENTITY bar "barbarbarbar">
]>
EOS
p doctype.entities # => { "gt" => #<REXML::Entity: ...>,
# "lt" => #<REXML::Entity: ...>, ... }
p doctype.entities["bar"].to_s # => "<!ENTITY bar \"barb......arbarbar\">"
p doctype.entities["gt"].to_s # => "<!ENTITY gt \">\">"
//}... -
CGI
:: Html3 # doctype (12201.0) -
@todo
...@todo... -
CGI
:: Html4 # doctype (12201.0) -
@todo
...@todo... -
CGI
:: Html4Fr # doctype (12201.0) -
@todo
...@todo... -
CGI
:: Html4Tr # doctype (12201.0) -
@todo
...@todo...