blob: 9323adf8c3783a557d3656f76b47cfdfa6c66994 (
plain)
1
2
3
4
5
|
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.
|