Jm lists wrote:
Hello,

Can you tell me what's this string?

=?GBK?B?zNSxpszh0NHE+qO6wvS80tLRvq3GwLzbo6zH67vYxsA=?=


How to decode it?I try:

$ perl -MEncode -le 'print
encode("utf8",decode("gbk","=?GBK?B?zNSxpszh0NHE+qO6wvS80tLRvq3GwLzbo6zH67vYxsA=?="))'

But I can't get the result correctly.


Thanks for your helps.

Hi,

This is an standard Outlook header ( Micro$oft standard ) , and the string should be decode with MIME::Base64.

print decode_base64 "zNSxpszh0NHE+qO6wvS80tLRvq3GwLzbo6zH67vYxsA=";
you got "淘宝提醒您:卖家已经评价,请回评" ( The site reminder: The buyer had bet the price, please reply )

"=?GBK?" is declare that the string is coding with GBK, and but B? is what ? I forgot...

HTH,
Mud





--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to