Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Haskell int list to String

I would like to know if there is a simple way to turn [5,2,10] into "52a". Where its not just to this case, I want to associate any number >9 with the corresponding letter.

Thanks in advance.

like image 629
Mares Avatar asked Dec 01 '10 13:12

Mares


2 Answers

You want to do something to each element of a list in order to get a new list. In other words, you want to apply a function (that you will have to define yourself) to each element. This is what the map function from the Prelude is for.

To convert between integers and individual characters, you could use the chr and ord functions from the Data.Char module.

So,

map (\i -> if i < 10 then chr (i + ord '0') else chr (i - 10 + ord 'a'))

is a function of type [Int] -> String that does what you want (no error checking included, though).

like image 119
wolfgang Avatar answered Nov 15 '22 06:11

wolfgang


Slower but more elegant:

f = map ((['0'..'9'] ++ ['a'..'z']) !!)

If your numbers are 0-15 use map intToDigit from Data.Char.

like image 37
sdcvvc Avatar answered Nov 15 '22 05:11

sdcvvc