can anyone help?

David Scarlett dscarlett@optushome.com.au
Sat, 26 May 2001 17:05:17 +1000


----- Original Message ----- 
From: "Rab Lee" <leelati@yahoo.com>
To: <haskell@haskell.org>
Sent: Saturday, May 26, 2001 4:52 PM
Subject: can anyone help?


> Dear Experts,
> I would appreciate any help that anyone can give me.
> I'm having a bit of trouble with Haskell, my question
> is pretty simple and i was wonder if anyone could
> please tell me how to change a string into a list???
> Thank you in advance
> Leat
> 

A String is a type of list already........ It is a list of Chars.

Could you be a bit more specific as to what you want to do?

Do you mean (for example), change a String of digits into a list of Ints?
ie. "12345" -> [1,2,3,4,5]