ruby/doc/string/length.rdoc
2025-12-27 10:59:48 -05:00

12 lines
274 B
Plaintext

Returns the count of characters (not bytes) in +self+:
'foo'.length # => 3
'こんにちは'.length # => 5
Contrast with String#bytesize:
'foo'.bytesize # => 3
'こんにちは'.bytesize # => 15
Related: see {Querying}[rdoc-ref:String@Querying].