Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 287 Bytes

bytesize.rdoc

File metadata and controls

11 lines (8 loc) · 287 Bytes

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