mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
0b0ae583f4
Treats: #length #bytesize
11 lines
287 B
Text
11 lines
287 B
Text
Returns the count of bytes (not characters) in +self+:
|
|
|
|
'foo'.bytesize # => 3
|
|
'тест'.bytesize # => 8
|
|
'こんにちは'.bytesize # => 15
|
|
|
|
Contrast with String#length:
|
|
|
|
'foo'.length # => 3
|
|
'тест'.length # => 4
|
|
'こんにちは'.length # => 5
|