blob: 22cb22c8890df107633dff603c5f243ad05326b2 (
plain)
1
2
3
4
5
6
7
8
|
Returns an array of the codepoints in +self+;
each codepoint is the integer value for a character:
'hello'.codepoints # => [104, 101, 108, 108, 111]
'こんにちは'.codepoints # => [12371, 12435, 12395, 12385, 12399]
''.codepoints # => []
Related: see {Converting to Non-String}[rdoc-ref:String@Converting+to+Non--5CString].
|