Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Stringクラス > length
length -> Integer
[permalink][rdoc]size -> Integer
文字列の文字数を返します。バイト数を知りたいときは bytesize メソッドを使ってください。
"test".length # => 4
"test".size # => 4
"テスト".length # => 3
"テスト".size # => 3
[SEE_ALSO] String#bytesize