mirror of
https://github.com/ruby/ruby.git
synced 2026-01-26 12:14:51 +00:00
(https://github.com/ruby/stringio/pull/171) https://github.com/ruby/stringio/commit/95a111017a
6 lines
265 B
Plaintext
6 lines
265 B
Plaintext
Returns the number of bytes in the string in +self+:
|
|
|
|
StringIO.new('hello').size # => 5 # Five 1-byte characters.
|
|
StringIO.new('тест').size # => 8 # Four 2-byte characters.
|
|
StringIO.new('こんにちは').size # => 15 # Five 3-byte characters.
|