最速Rubyリファレンスマニュアル検索!
すべて(108)
2.1.0(9)
2.2.0(9)
2.3.0(9)
2.4.0(9)
2.5.0(9)
2.6.0(9)
2.7.0(9)
3.0(9)
3.1(9)
3.2(9)
3.3(9)
3.4(9)
108件ヒット
[101-108件を表示]
(0.030秒)
トップページ
>
:
ruby
>
:
Ruby
>
:
csv
>
:
headers
>
:
インスタンスメソッド
>
クラス:CSV::Table
別のキーワード
rbconfig ruby
fiddle ruby_free
fiddle build_ruby_platform
rake ruby
rubygems/defaults ruby_engine
キーワード
empty?
(12)
inspect
(12)
length
(12)
push
(12)
size
(12)
to
_
csv
(12)
to
_
s
(12)
values
_
at
(12)
検索結果
先頭1件
CSV
::
Table
#
size -> Integer
<<
<
1
2
>>
CSV
::
Table
#
size -> Integer
(22.0)
2.2.0
2.3.0
2.4.0
2.7.0
3.0
3.1
3.2
3.3
インスタンスメソッド
(ヘッダを除く)行数を返します。
...
(ヘッダを除く)行数を返します。
Array#length, Array#size に委譲しています。
//emlist[][
ruby
]{
require '
csv
'
csv
=
CSV
.new("a,b,c\n1,2,3",
headers
: true)
table =
csv
.read
p table.size # => 1
//}
@see Array#length, Array#size
...
<<
<
1
2
>>