Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
python NNTPLib 给了我作者的名字,例如,
"=?Utf-8?B?RGVubmlzIEJhc2hhbQ==?= <someone@someforum.com >"
(为清楚起见引用)。
我如何以人类可读的格式编码这个文本?
最后的双重等于是一个死的赠品。Base 64 使用它来填充没有 4 个字节的偶数倍数的字符串。
在蟒蛇中:
print "RGVubmlzIEJhc2hhbQ==".decode('base_64')
在 PHP 中:
<?php echo base64_decode("RGVubmlzIEJhc2hhbQ=="); ?>
享受。
PS...丹尼斯巴沙姆