Re: What's this string?



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




.



Relevant Pages

  • Re: TLV Objekte aus Datei lesen
    ... Weil STRING als OCTET STRING und IA5STRING vorkommen, das aber piepegal ist, schere ich die alle über einen Kamm und komme mit meinem STRING aus. ... Es gibt hier keinen Len-Parameter beim Decode. ... In meinen Daten haben die meisten der Arrays eine ein- oder zweibyteige Angabe der Anzahl der Records am Anfang. ... technischen Daten der Karte sofern sie in der Datei stehn). ...
    (de.comp.lang.delphi.misc)
  • Re: Sending floats over a client-server in Smalltalk
    ... The trick is knowing what to decode them ... Then encode the number in the remaining bytes. ... ByteString>>floatAt: byteIndex ... I could then take a string ...
    (comp.lang.smalltalk)
  • Re: [Full-Disclosure] Phishing scam - Obfuscated url help please
    ... > Let's decode a URL that may end up making IE destroying the PC or ... just to trick some clueless newbie or "typical user" but to outwit ... string variable and writes that to a file). ... output file with a "safe" file viewer. ...
    (Full-Disclosure)
  • Re: Selecting a record froma table where a column might be null
    ... In perl dbi, ... So you use the decode function in your ... string null in decode you can ... Win a $20,000 Career Makeover at Yahoo! ...
    (perl.dbi.users)
  • Re: Whats this string?
    ... This is an standard Outlook header, ... string should be decode with MIME::Base64. ... -- Terry Pratchett in Sourcery ...
    (perl.beginners)