up vote 2 down vote favorite
share [g+] share [fb]

is there any C# method that works similar to Convert.ToBase64String but doesn't generate anything except alphanumeric output?

Thanks!

link|improve this question

65% accept rate
1  
So you're really after base 62 encoding? – Smashery Jun 1 '09 at 4:05
Looks like it ! – Alex Jun 1 '09 at 4:09
Can you tell us your specific reason for not wanting the plus or slash from Base64, just out of interest? – Xiaofu Jun 1 '09 at 4:13
I'm using the encoded string in a URL afterwards, and the random slashes are messing with my URL routing, while the + is disallowed by my IIS7 settings (the one where you can double encode with +, forgot the name). – Alex Jun 1 '09 at 4:17
feedback

4 Answers

up vote 5 down vote accepted

You're probably looking at using something like Base32 encoding then. There is a Base32 encoder/decoder for C# here by Michael Giagnocavo. It uses a combination of capitalized letters and numbers.

There's also a related discussion on StackOverflow here.

EDIT: And if by any chance this is for URL-safe related Base64 encoding, just do Base64 and replace "+" with "-" and "/" with "_". But I'm guessing, you may not want it for that.

link|improve this answer
Base64 will never create "-" or "_" by itself? – Alex Jun 1 '09 at 4:24
The method provided by the .NET libraries doesn't, no. – Xiaofu Jun 1 '09 at 4:27
1  
There's a brief description on URL-safe Base64 here: en.wikipedia.org/wiki/Base64#URL_applications – Xiaofu Jun 1 '09 at 4:34
feedback

you can replace + or slash with some predefined string if possible.

link|improve this answer
I thought about doing that, but if I happen to hit that exact string during regular base64 encoding then hell breaks loose. Plus it would be really just a hack. :( – Alex Jun 1 '09 at 4:09
@Alex it is not a hack. It is used in communications. I really not remember the exact scheme (that's why such short answer) but it is possible to handle the occurrence of pattern in base64 string gracefully. I've read about it in AST's "Computer Network" and Stalling's "Data and Computer Communications" during my masters. – TheVillageIdiot Jun 1 '09 at 4:25
Got it. Didn't know about "-" and "_" by the way - that works I guess. Thanks so much though! :) – Alex Jun 1 '09 at 4:29
feedback

A common variant of base-64 (for use on query-string) is to use '-' and '_' in place of '+' and '/'. Perhaps a bit of Replace(...) at each end would do the job?

link|improve this answer
I thought Base64 would encode by itself to "-" and "_" as well. I guess it doesn't?? – Alex Jun 1 '09 at 4:25
No; the "classic" base-64 set is "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" – Marc Gravell Jun 1 '09 at 4:30
feedback

You can use BitConverter.ToString() which will give you a hex string. However the resulting strings will be longer than Base64 encoding.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.