summaryrefslogtreecommitdiff
path: root/doc/string/each_codepoint.rdoc
blob: 88bfcbd1c0bea5b56af9848cd1c2f8f48b62df6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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.