in reply to How can I encode a string using only lower case letters and numbers?

If your hash keys carry any meaning, I wrote Text::Fragment to turn "sentences" into sensible filenames. If you want to turn arbitrary hash keys into something sensible, I guess that Math::Fleximal is a good way, converting from base 256 to base 32 (with alphabet a-z0-9).

  • Comment on Re: How can I encode a string using only lower case letters and numbers?