12件ヒット
[1-12件を表示]
(0.062秒)
別のキーワード
検索結果
-
Base64
. # decode64(str) -> String (18114.0) -
与えられた文字列を Base64 デコードしたデータを返します。
...aram str Base64 デコードする文字列を指定します。
require 'base64'
str = 'VGhpcyBpcyBsaW5lIG9uZQpUaGlzIG' +
'lzIGxpbmUgdHdvClRoaXMgaXMgbGlu' +
'ZSB0aHJlZQpBbmQgc28gb24uLi4K'
puts Base64.decode64(str)
# This is line one
# This is line two
# This is...