sverkot 0 Posted June 5, 2007 Report Share Posted June 5, 2007 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 Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.