るりまサーチ (Ruby 3.2)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.027秒)
トップページ > クエリ:Converter[x] > バージョン:3.2[x] > クエリ:replacement=[x]

別のキーワード

  1. converter primitive_convert
  2. converter new
  3. converter putback
  4. converter asciicompat_encoding
  5. converter replacement=

ライブラリ

クラス

検索結果

Encoding::Converter#replacement=(string) (63337.0)

置換文字を設定します。

置換文字を設定します。

@param string 変換器に設定する置換文字

//emlist[][ruby]{
ec = Encoding::Converter.new("utf-8", "us-ascii", :undef => :replace)
ec.replacement = "<undef>"
p ec.convert("a \u3042 b") #=> "a <undef> b"
//}