24件ヒット
[1-24件を表示]
(0.148秒)
検索結果
-
String
# codepoints -> [Integer] (18210.0) -
文字列の各コードポイントの配列を返します。(self.each_codepoint.to_a と同じです)
...ードポイントの配列を返します。(self.each_codepoint.to_a と同じです)
//emlist[例][ruby]{
#coding:UTF-8
"hello わーるど".codepoints
# => [104, 101, 108, 108, 111, 32, 12431, 12540, 12427, 12393]
//}
ブロックが指定された場合は String#each_codepoint と同じよ... -
String
# codepoints {|codepoint| block } -> self (18110.0) -
文字列の各コードポイントの配列を返します。(self.each_codepoint.to_a と同じです)
...ードポイントの配列を返します。(self.each_codepoint.to_a と同じです)
//emlist[例][ruby]{
#coding:UTF-8
"hello わーるど".codepoints
# => [104, 101, 108, 108, 111, 32, 12431, 12540, 12427, 12393]
//}
ブロックが指定された場合は String#each_codepoint と同じよ...