Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 219 Bytes

chars.rdoc

File metadata and controls

5 lines (4 loc) · 219 Bytes

Returns an array of the characters in self:

'hello'.chars     # => ["h", "e", "l", "l", "o"]
'тест'.chars      # => ["т", "е", "с", "т"]
'こんにちは'.chars # => ["こ", "ん", "に", "ち", "は"]