mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
0140e6c41e
Treats: #chars #codepoints #each_char #each_codepoint #each_grapheme_cluster #grapheme_clusters Also, corrects a passage in #unicode_normalize that mentioned module UnicodeNormalize, whose doc (:nodoc:, actually) says not to mention it.
17 lines
376 B
Text
17 lines
376 B
Text
Calls the given block with each successive character from +self+;
|
||
returns +self+:
|
||
|
||
'hello'.each_char {|char| print char, ' ' }
|
||
print "\n"
|
||
'тест'.each_char {|char| print char, ' ' }
|
||
print "\n"
|
||
'こんにちは'.each_char {|char| print char, ' ' }
|
||
print "\n"
|
||
|
||
Output:
|
||
|
||
h e l l o
|
||
т е с т
|
||
こ ん に ち は
|
||
|
||
Returns an enumerator if no block is given.
|