528件ヒット
[1-100件を表示]
(0.129秒)
別のキーワード
ライブラリ
- ビルトイン (60)
-
cgi
/ html (48) -
net
/ imap (12) -
rake
/ rdoctask (72) -
rexml
/ document (216) -
rexml
/ parsers / pullparser (12) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (24) -
webrick
/ httpresponse (72)
クラス
-
Net
:: IMAP (12) -
REXML
:: DocType (192) -
REXML
:: Document (12) -
REXML
:: Parsers :: PullEvent (12) -
REXML
:: Text (12) -
Rake
:: RDocTask (72) - 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)
- doctype (96)
- doctype? (12)
-
doctype
_ end (12) - entities (12)
- entity (12)
-
external
_ id (12) - fetch (12)
- hex (12)
- name (12)
- namespaces (12)
-
node
_ type (12) - notation (12)
- notations (12)
-
option
_ list (12) -
option
_ string (12) - public (12)
- system (12)
- template (12)
- template= (12)
-
to
_ f (12) -
to
_ i (12) -
to
_ s (12) - write (12)
検索結果
先頭5件
-
String
# oct -> Integer (18240.0) -
文字列を 8 進文字列であると解釈して、整数に変換します。
...ist[例][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 # => 16
//}......。
//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... -
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 -
REXML
:: Parsers :: PullEvent # doctype? -> bool (12201.0) -
DTD 開始なら真を返します。
DTD 開始なら真を返します。 -
REXML
:: SAX2Listener # doctype(name , pub _ sys , long _ name , uri) -> () (12201.0) -
文書型宣言(DTD)に出会った時に呼び出されるコールバックメソッドです。
...ッドです。
@param name 宣言されているルート要素名が文字列で渡されます。
@param pub_sys "PUBLIC" もしくは "SYSTEM" が渡されます。nilが渡される場合もあります。
@param long_name "SYSTEM" の場合はシステム識別子が、"PUBLIC"の場合は公......開識別子が
文字列で渡されます
@param uri "SYSTEM" の場合は nil が、"PUBLIC" の場合はシステム識別子が渡されます...