in reply to How can I encode a string using only lower case letters and numbers?
In fact a base 32 encoding would be just fine ( which uses 32 of the 26 + 10 = 36 possible characters ).
Why not Math::Base36 + tr[A-Z][a-z]?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How can I encode a string using only lower case letters and numbers?
by tkguifan (Scribe) on Feb 15, 2015 at 19:47 UTC | |
by BrowserUk (Patriarch) on Feb 15, 2015 at 21:43 UTC |