On Tue, 4 Dec 2001, Chris wrote: > is there a function that converts Integers to Strings and vice versa? Prelude> (reads "123 abc") :: [(Integer, String)] [(123," abc")] Prelude> show 123 "123" HTH. (-: -- Mark