summaryrefslogtreecommitdiff
path: root/doc/string/bytes.rdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/string/bytes.rdoc')
-rw-r--r--doc/string/bytes.rdoc7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/string/bytes.rdoc b/doc/string/bytes.rdoc
new file mode 100644
index 0000000000..6dde0a745d
--- /dev/null
+++ b/doc/string/bytes.rdoc
@@ -0,0 +1,7 @@
+Returns an array of the bytes in +self+:
+
+ 'hello'.bytes # => [104, 101, 108, 108, 111]
+ 'こんにちは'.bytes
+ # => [227, 129, 147, 227, 130, 147, 227, 129, 171, 227, 129, 161, 227, 129, 175]
+
+Related: see {Converting to Non-String}[rdoc-ref:String@Converting+to+Non--5CString].