Are there any case insensitive URL shorteners out there that have an API?
|
migrated from superuser.com Dec 22 '10 at 16:55
|
TinyURL is case insensitive. (To test: try http://tinyurl.com/28ygwgs , http://tinyurl.com/28ygwGS . http://tinyurl.com/28YGwgs, http://tinyurl.com/28yGWgs et al ) (PS: the short URL is link to this question ) |
|||||||||||
|
|
Not at the moment that I'm aware of. I don't think any url shortener will implement this either, it reduces the number of characters to use in a string by 26. This means a lot of different combinations will be lost requiring them to make the strings longer... That be exactly the opposite goal an url shortener is trying to accomplish. Example, if only using the alphabet, a shortener which uses upper and lowercase has this many possible combinations when using a 5 character string:
roughly 380 million A shortener which lower case only has this many possible combinations when using a 5 character string:
roughly 11 million So, comparing 380 million vs 11 million, I can tell you which one the url shortener will probably choose to use. |
|||||||
|
|
As Also, Wikipedia claims Snipurl uses Base 36 encoding (just like TinyURL), and hence is case-insensitive by design too. Indeed: http://snipr.com/1p3l9l versus http://snipr.com/1P3L9L. |
|||
|
