Jump to content

VB Script - Decode Base64


sverkot

Recommended Posts

I've written a base64 decoding program to convert the encoded body of the email that's stored in an SQL database. The problem is, in the database, it stores the space as some weird character (that looks like blocked uppercase I) and when I pass this body through the decoder, it cannot strip this character out. Does anyone know what this character is called and how to remove it? I replaced the space and tabs using the following method :base64String = Replace(base64String, vbCrLf, "")base64String = Replace(base64String, vbTab, "")base64String = Replace(base64String, " ", "")This wont eliminate the I character. Please help.Thanks,Sang

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...