るりまサーチ

最速Rubyリファレンスマニュアル検索!
48件ヒット [1-48件を表示] (0.089秒)
トップページ > クエリ:r[x] > 種類:インスタンスメソッド[x] > クラス:String[x] > クエリ:codepoints[x]

別のキーワード

  1. _builtin to_r
  2. open3 pipeline_r
  3. matrix elements_to_r
  4. bigdecimal to_r
  5. fileutils cp_r

ライブラリ

検索結果

String#codepoints -> [Integer] (21210.0)

文字列の各コードポイントの配列を返します。(self.each_codepoint.to_a と同じです)

...mlist[例][ruby]{
#coding:UTF-8
"hello わーるど".codepoints
# => [104, 101, 108, 108, 111, 32, 12431, 12540, 12427, 12393]
//}

ブロックが指定された場合は String#each_codepoint と同じように動作します。

R
uby 2.6 までは deprecated の警告が出ますが、Ruby 2.7...
...で警告は削除されました。

@see String#each_codepoint...

String#codepoints {|codepoint| block } -> self (21110.0)

文字列の各コードポイントの配列を返します。(self.each_codepoint.to_a と同じです)

...mlist[例][ruby]{
#coding:UTF-8
"hello わーるど".codepoints
# => [104, 101, 108, 108, 111, 32, 12431, 12540, 12427, 12393]
//}

ブロックが指定された場合は String#each_codepoint と同じように動作します。

R
uby 2.6 までは deprecated の警告が出ますが、Ruby 2.7...
...で警告は削除されました。

@see String#each_codepoint...

String#each_codepoint -> Enumerator (3108.0)

文字列の各コードポイントに対して繰り返します。

...ます。

//emlist[例][ruby]{
#coding:UTF-8
"hello わーるど".each_codepoint.to_a
# => [104, 101, 108, 108, 111, 32, 12431, 12540, 12427, 12393]
"hello わーるど".encode('euc-jp').each_codepoint.to_a
# => [104, 101, 108, 108, 111, 32, 42223, 41404, 42219, 42185]
//}

@see String#codepoints...

String#each_codepoint {|codepoint| block } -> self (3008.0)

文字列の各コードポイントに対して繰り返します。

...ます。

//emlist[例][ruby]{
#coding:UTF-8
"hello わーるど".each_codepoint.to_a
# => [104, 101, 108, 108, 111, 32, 12431, 12540, 12427, 12393]
"hello わーるど".encode('euc-jp').each_codepoint.to_a
# => [104, 101, 108, 108, 111, 32, 42223, 41404, 42219, 42185]
//}

@see String#codepoints...