I have a String like "1 2 3 4 5". How can I convert it into a list of integers like [1,2,3,4,5] in Haskell? What if the list is "12345"?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can use
Here we use For the string without spaces, we need to convert each
|
||||
|
|
Error handling is left as an exercise. (Hint: you will need a different return type.) |
||||