Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > zlibライブラリ > Zlib::Inflateクラス > inflate
inflate(string) -> String
[permalink][rdoc]string を展開します。
ちなみに、このメソッドは以下のコードとほぼ同じです:
require 'zlib' def inflate(string) zstream = Zlib::Inflate.new buf = zstream.inflate(string) zstream.finish zstream.close buf end
require 'zlib' cstr = "x\234\313\310OOUH+MOTH\315K\001\000!\251\004\276" p Zlib::Inflate.inflate(cstr) #=> "hoge fuga end"