612件ヒット
[601-612件を表示]
(0.074秒)
ライブラリ
- ビルトイン (24)
-
irb
/ cmd / chws (24) -
irb
/ cmd / pushws (36) -
irb
/ context (24) - json (72)
- prettyprint (12)
- rake (48)
-
rexml
/ document (228) -
rinda
/ rinda (60) -
rinda
/ tuplespace (60) - scanf (24)
クラス
-
IRB
:: Context (24) -
IRB
:: ExtendCommand :: ChangeWorkspace (12) -
IRB
:: ExtendCommand :: CurrentWorkingWorkspace (12) -
IRB
:: ExtendCommand :: PopWorkspace (12) -
IRB
:: ExtendCommand :: PushWorkspace (12) -
IRB
:: ExtendCommand :: Workspaces (12) -
JSON
:: State (72) -
ObjectSpace
:: WeakMap (24) - PrettyPrint (12)
-
REXML
:: Attribute (12) -
REXML
:: Attributes (24) -
REXML
:: DocType (12) -
REXML
:: Element (84) -
Rake
:: NameSpace (24) -
Rinda
:: TupleSpace (60) -
Rinda
:: TupleSpaceProxy (60) -
Scanf
:: FormatSpecifier (6) -
Scanf
:: FormatString (6) - String (12)
モジュール
- Kernel (12)
-
REXML
:: Namespace (96) -
Rake
:: TaskManager (12)
キーワード
- [] (24)
- []= (12)
-
add
_ namespace (24) - attribute (12)
-
count
_ space? (6) -
delete
_ namespace (12) - execute (60)
- genspace (12)
-
get
_ attribute _ ns (12) -
has
_ name? (12) -
in
_ namespace (12) -
local
_ name (12) - name (12)
- name= (12)
- namespace (36)
- namespaces (36)
- notify (24)
- prefix (12)
- prefix= (12)
- read (24)
-
read
_ all (24) - scanf (12)
- space= (12)
-
space
_ before (12) -
space
_ before= (12) - take (24)
- tasks (12)
-
to
_ h (12) -
to
_ hash (12) - whitespace (12)
- workspace (12)
- workspace= (12)
- write (24)
検索結果
-
String
# scanf(format) -> Array (7.0) -
ブロックを指定しない場合、見つかった文字列を format に従って変 換し、そのオブジェクトの配列を返します。 format で指定した文字列が見つからない場合は空の配列を 生成して返します。
...が含まれます。
動作例;
# encoding: utf-8
require 'scanf'
str = "1 aaa"
p str.scanf("%d %s") #=> [1, "aaa"]
: space
フォーマット中の空白は(0個を含む)任意の数の空白にマッチします。
//emlist{
require 'scanf'
p "a 10".sc... -
String
# scanf(format) {|*ary| . . . } -> Array (7.0) -
ブロックを指定しない場合、見つかった文字列を format に従って変 換し、そのオブジェクトの配列を返します。 format で指定した文字列が見つからない場合は空の配列を 生成して返します。
...が含まれます。
動作例;
# encoding: utf-8
require 'scanf'
str = "1 aaa"
p str.scanf("%d %s") #=> [1, "aaa"]
: space
フォーマット中の空白は(0個を含む)任意の数の空白にマッチします。
//emlist{
require 'scanf'
p "a 10".sc...