vote up 0 vote down star

Hi, I've got a list of strings, is it possible to convert it to an list of ints?

eg: ["1","2"] -> [1,2]

THANKS,

flag

70% accept rate

2 Answers

vote up 9 vote down check

Well

f :: [String] -> [Int]
f = map read

No?

link|flag
it did work! :) tnx – pier May 28 at 9:42
vote up 0 vote down

It did work for me too.. thanks!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.