1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/doc/string/each_codepoint.rdoc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
502 B
Text
Raw Normal View History

Calls the given block with each successive codepoint from +self+;
each codepoint is the integer value for a character;
returns +self+:
'hello'.each_codepoint {|codepoint| print codepoint, ' ' }
print "\n"
'тест'.each_codepoint {|codepoint| print codepoint, ' ' }
print "\n"
'こんにちは'.each_codepoint {|codepoint| print codepoint, ' ' }
print "\n"
Output:
104 101 108 108 111
1090 1077 1089 1090
12371 12435 12395 12385 12399
Returns an enumerator if no block is given.