Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Haskell read lines of file

Tags:

file

io

haskell

I want to read a whole file into a string and then use the function lines to get the lines of the string. I'm trying to do it with these lines of code:

main = do
   args <- getArgs
   content <- readFile (args !! 0)
   linesOfFiles <- lines content

But I'm getting the following error by compiling ad it fails:

Couldn't match expected type `IO t0' with actual type `[String]'
In the return type of a call of `lines'
In a stmt of a 'do' block: linesOfFiles <- lines content

I thought by binding the result of readFile to content it will be a String DataType, why isn't it?

like image 460
LeonS Avatar asked Jun 13 '12 19:06

LeonS


1 Answers

I thought by binding the result of readFile to content it will be a String DataType, why isn't it?

It is a String indeed, that's not what the compiler complains about. Let's look at the code:

main = do
   args <- getArgs
   content <- readFile (args !! 0)

Now content is, as desired, a plain String. And then lines content is a [String]. But you're using the monadic binding in the next line

   linesOfFiles <- lines content

in an IO () do-block. So the compiler expects an expression of type IO something on the right hand side of the <-, but it finds a [String].

Since the computation lines content doesn't involve any IO, you should bind its result with a let binding instead of the monadic binding,

   let linesOfFiles = lines content

is the line you need there.

like image 191
Daniel Fischer Avatar answered Oct 24 '22 17:10

Daniel Fischer