るりまサーチ

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

別のキーワード

  1. _builtin destination_encoding
  2. _builtin destination_encoding_name
  3. converter destination_encoding
  4. invalidbytesequenceerror destination_encoding
  5. undefinedconversionerror destination_encoding

ライブラリ

クラス

検索結果

Encoding::Converter#destination_encoding -> Encoding (18114.0)

変換先のエンコーディングを返します。

...変換先のエンコーディングを返します。

@return 変換先のエンコーディング

//emlist[][ruby]{
ec = Encoding::Converter.new("utf-8", "euc-jp")
ec.destination_encoding #=> #<Encoding:EUC-JP>
//}...