ruby--ruby/doc/string/each_char.rdoc

18 lines
376 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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.