るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.068秒)

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. matrix i
  5. csv to_i

クラス

キーワード

検索結果

Encoding::CP65001 -> Encoding (63610.0)

UTF-8。Unicode や ISO 10646 を ASCII 互換な形で符号化するための方式です。

UTF-8。Unicode や ISO 10646 を ASCII 互換な形で符号化するための方式です。

BOM を含みません。

@see https://tools.ietf.org/html/rfc3629

Encoding::UTF_8 -> Encoding (18310.0)

UTF-8。Unicode や ISO 10646 を ASCII 互換な形で符号化するための方式です。

UTF-8。Unicode や ISO 10646 を ASCII 互換な形で符号化するための方式です。

BOM を含みません。

@see https://tools.ietf.org/html/rfc3629

Encoding#names -> String (9325.0)

エンコーディングの名前とエイリアス名の配列を返します。

エンコーディングの名前とエイリアス名の配列を返します。

//emlist[例][ruby]{
Encoding::UTF_8.names #=> ["UTF-8", "CP65001"]
//}