gpt4 book ai didi

javascript - 在 Ruby/Javascript 中解码带引号的可打印字符串

转载 作者:行者123 更新时间:2023-11-28 20:58:48 25 4
gpt4 key购买 nike

我正在使用 Ruby 邮件库 https://github.com/mikel/mail/

我正在寻找一种解决方案来解码 Quoted-printable 字符串(使用此库或 native Ruby 函数)

我的Ruby版本是ruby 1.9.2p294

任何来自客户端的 Javascript 解决方案都很好。

有什么线索吗?

最佳答案

您将能够通过 decodeURIComponent(str.replace(/=/g,'%')) 对其进行解码

用 Javascript 测试代码:

var input = 'Hello! in Korean is: =EC=95=88=EB=85=95=ED=95=98=EC=84=B8=EC=9A=94!';
var output = decodeURIComponent(input.replace(/=/g,'%'));

document.writeln(output);

输出:

Hello! in Korean is: 안녕하세요!

在线尝试此代码 here .

关于javascript - 在 Ruby/Javascript 中解码带引号的可打印字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11558227/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com