This is not a complete solution, but it will get you started. This gets the list of digits for a number between zero and one. Wrap it with an appropriate method to get the output in the format you need.
digits :: (RealFrac a) => a -> [Int]
digits 0 = []
digits x = d : digits (10*x - fromIntegral d)
where
d = floor (10*x)
Playing around with it:
ghci> digits (1/4)
[2,5]
ghci> digits (1/3)
[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,7,2,7,3,8,6,0,0,9,
9,9,5,8,2,5,5,8,8,7,0,3,1,5,5,5,1,7,5,7,8,1,2,5]
-- rounding error got us, let's use an exact rational
ghci> import Data.Ratio
ghci> digits (1%3)
[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,
...
Naturally, you can take from the infinite list of digits to get a prefix.
Data.Char.digitToInt. – hammar Oct 8 '11 at 3:36(+) (-48)can be writtensubtract 48. – luqui Oct 8 '11 at 5:50