summaryrefslogtreecommitdiff
path: root/doc/string/bytesize.rdoc
blob: 8d12a0d454fbac19a52b6eed66c3e10ba00901a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Returns the count of bytes in +self+.

Note that the byte count may be different from the character count (returned by #size):

  s = 'foo'
  s.bytesize # => 3
  s.size     # => 3
  s = 'こんにちは'
  s.bytesize # => 15
  s.size     # => 5

Related: see {Querying}[rdoc-ref:String@Querying].