ruby/doc/string/codepoints.rdoc
2026-02-06 18:35:02 -05:00

9 lines
345 B
Plaintext

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-String].