summaryrefslogtreecommitdiff
path: root/doc/string/length.rdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/string/length.rdoc')
-rw-r--r--doc/string/length.rdoc12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/string/length.rdoc b/doc/string/length.rdoc
new file mode 100644
index 0000000000..544bca269f
--- /dev/null
+++ b/doc/string/length.rdoc
@@ -0,0 +1,12 @@
+Returns the count of characters (not bytes) in +self+:
+
+ 'foo'.length # => 3
+ 'тест'.length # => 4
+ 'こんにちは'.length # => 5
+
+Contrast with String#bytesize:
+
+ 'foo'.bytesize # => 3
+ 'тест'.bytesize # => 8
+ 'こんにちは'.bytesize # => 15
+