Possible Duplicate:
convert string list to int list in haskell
I have a string 12345
. How can I show it in list form like [1,2,3,4,5]
? And also what if i have a string like ##%%
? I can't convert it to Int
. How can view it in the form [#,#,%,%]
?
Use intersperse
myShow :: String -> String
myShow s = concat ["[", intersperse ',' s, "]"]
import Data.Char (digitToInt)
map digitToInt "12345"
You should map the function read x::Int to each of the elements of the string as a list of chars:
map (\x -> read [x]::Int) "1234"
If you have non-digit characters you should filter it first like this:
import Data.Char
map (\x -> read [x]::Int) (filter (\x -> isDigit x) "1234##56")
That results in:
[1,2,3,4,5,6]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With