vote up 23 vote down star
11

I got inspired to try out Haskell again based on a recent answer. My big block is that reading a file line by line (a task made simple in languages such as Perl) seems complicated in a functional language. How do you read a file line by line in your favorite language?


So that we are comparing apples to other types of apples, please write a program that numbers the lines of the input file. So if your input is:

Line the first.
Next line.
End of communication.

The output would look like:

1       Line the first.
2       Next line.
3       End of communication.

I will post my Haskell program as an example.


Ken commented that this question does not specify how errors should be handled. I'm not overly concerned about it because:

  1. Most answers did the obvious thing and read from stdin and wrote to stdout. The nice thing is that it puts the onus on the user to redirect those streams the way they want. So if stdin is redirected from a non-existent file, the shell will take care of reporting the error, for instance.

  2. The question is more aimed at how a language does IO than how it handles exceptions.

But if necessary error handling is missing in an answer, feel free to either edit the code to fix it or make a note in the comments.

flag
show 12 more comments

53 Answers

1 2 next
vote up 8 vote down check

awk: (one line version)

{ print NR "\t" $0 }
link|flag
1  
I'm bringing awk to the top of the answer stack since it's perfectly suited for the job at hand. – Jon Ericson Mar 30 at 23:20
show 1 more comment
vote up 8 vote down

Haskell

The output of my version applied to its own source:

1       main =  interact numberLines
2
3       numberLines :: String -> String
4       numberLines s = 
5           unlines $ zipWith (\a b -> show a ++ "\t" ++ b) [1..] (lines s)

Notes:

  1. I'm still learning Haskell and I found the problem far more challenging than the size of my source code indicates. And it had nothing to do with monads. The best explanation of IO in Haskell I found was Learn You a Haskell for Great Good!. It's a much better tutorial than the title suggests.

  2. The hard part was actually creating the numberLines function and getting all the types worked out. The lambda expression was originally a named function so that the error messages were more meaningful as I worked. Putting the type declaration at the top of a function was more helpful than I initially anticipated since it documents how you can chain functions together. It took a lot of reading to discover that show converted the line numbers into a form I could concatenate to the line.

  3. ephemient has posted another Haskell example and confirmed that it will work incrementally. All of the functions are lazy, so it meets the requirement of reading line by line. To verify, I used the following test from the command line:

    $ strings /dev/random | runhaskell line_count.hs
    
link|flag
vote up 7 vote down

C++

/* plain copy */
copy(istream_iterator<char>(cin), istream_iterator<char>(),
     ostream_iterator<char>(cout));

/* with line numbers */
string line;
size_t n = 0;
while (getline(cin, line)) {
  ++n;
  cout << n << line << endl;      
}

C

const int MAX_LINE = 255;
/* ... */
char buf[ MAX_LINE ];
size_t n = 0;
while(fgets(buf, sizeof buf, stdin) != NULL) {
   ++n;
   printf("%u %s\n", n, buf);
}

C(With dynamic memory)

FILE *fptr;
char *buf;
int flen;
/*open the file*/
fptr = fopen("foo", "r+");

/*get the length of the file and allocate the memory for it*/
fseek(fptr, 0, SEEK_END);
flen = ftell(fptr);
rewind(fptr);

buf = (char*)malloc(flen);

/*and now we break into the routine from above, suitably modified*/
while(fgets(buf, flen, fptr) != NULL) {
   ++n;
   printf("%u %s\n", n, buf);
}
link|flag
show 4 more comments
vote up 21 vote down

Python

Python is my language of choice. Here is how such an operation would go:

myfile = open('foo.txt')

for index, line in enumerate(myfile):
    print '%i  %s' % (index, line)

done!


A more general version:

#!/usr/bin/env python
import fileinput, sys

for n, line in enumerate(fileinput.input()):
    sys.stdout.write("%d\t%s" % (n+1, line))
link|flag
show 7 more comments
vote up 5 vote down

VB.Net

1       Dim fileStream As New FileStream(filePath, Open)
2       Dim fileReader As New StreamReader(fileStream)
3       Dim lineNumber As Integer = 0
4       While Not fileReader.EoF
5           Dim line As String = fileReader.ReadLine()
6           Debug.WriteLine(String.Format("{0}: {1}",lineNumber, line)
7           lineNumber += 1
8       End While
9       fileReader.Dispose
10      fileStream.Dispose
link|flag
vote up 12 vote down

C#

using (var reader = File.OpenText(path))
{
    int lineNumber = 1;
    while (!reader.EndOfStream)
        Console.WriteLine("{0} {1}", lineNumber++, reader.ReadLine());
}

And with the addition of LINQ C# has functional monads.

link|flag
show 7 more comments
vote up 19 vote down

Perl 5

#!/usr/bin/env perl
while (<>) { print "$.\t$_" }
link|flag
3  
Shorter: perl -pe 's/^/$.\t/' – Jon Ericson Mar 24 at 19:17
show 5 more comments
vote up 8 vote down

Java

This is the simple version, not worrying about try/catch blocks:

BufferedReader reader = new BufferedReader(new FileReader(fileName));
String line;
int i = 1;
while ((line = reader.readLine()) != null) {
    System.out.println(i + "\t" + line);
    i++;
}
reader.close();

The way I would handle exceptions is to wrap this in a method:

private void printLinesWithNumbers()
    throws FileNotFoundException, IOException {
    BufferedReader reader = null;
    try {
        reader = new BufferedReader(new FileReader(fileName));
        String line;
        int i = 1;
        while ((line = reader.readLine()) != null) {
            System.out.println(i + "\t" + line);
            i++;
        }
    } finally {
        if (reader != null) {
            try {
                reader.close();
            } catch (IOException ex) {
                //FileReaders never throw exceptions on close()
                //and we're in a catch block, so we're not supposed to
                //throw anything anyway
            }
        }
    }
}

Now isn't that pretty? Take that, Java-haters!

Alternatively

BufferedReader reader = new BufferedReader(new FileReader(fileName));
String line;

for (int i = 1; (line = reader.readLine()) != null; i++)
    System.out.println(i + "\t" + line);

reader.close();
link|flag
show 5 more comments
vote up 9 vote down

MATLAB

fid = fopen(fileName);
i=0;
while ~feof(fid)
   i=i+1;
   tline = fgetl(fid);
   disp([num2str(i), '000%d'), '  ', tline]);
end
fclose(fid)
link|flag
show 1 more comment
vote up 2 vote down

VB6 / VBA

Private Sub ReadFile(ByVal pFilePath As String)

  Dim iFileNum As Integer
  Dim iCtr As Integer
  Dim sLine As String

  iCtr = 0
  iFileNum = FreeFile

  Open pFilePath For Input As #iFileNum

  Do While Not EOF(iFileNum)
    iCtr = iCtr + 1
    Input #iFileNum, sLine
    Debug.Print iCtr; sLine
  Loop

  Close #iFileNum

End Sub
link|flag
vote up 6 vote down
import java.io.FileReader;
import java.io.IOException;
import java.io.LineNumberReader;
import java.io.PrintWriter;

public class LineReaderWriter {
    public static void main(String[] args) throws IOException {
        PrintWriter out = new PrintWriter(System.out);
        LineNumberReader in = new LineNumberReader(new FileReader(args[0]));
        in.setLineNumber(1);
        while (in.ready()) {
            out.printf("%d\t%s%n", in.getLineNumber(), in.readLine());
        }
        out.close();
    }
}
link|flag
1  
%n is a platform-independent newline character in Java's formatting syntax. – mmyers Mar 24 at 20:33
show 2 more comments
vote up 14 vote down

Bash

#!/bin/bash
cat -n $1

:)

Edit: Don't like using "cat"? Try nl instead.

#!/bin/bash
nl $1

And to make it compliant with the assignment:

#!/bin/bash
nl -n ln $1
link|flag
show 3 more comments
vote up 4 vote down

Groovy

One line version.

new File(filename).readLines().eachWithIndex() { line, index -> println " ${index + 1} ${line}" };

Multiline version, more readable.

file = new File(filename);
lines = file.readLines();
lines.eachWithIndex() { line, index -> println " ${index + 1} ${line}" };
link|flag
vote up 10 vote down

PHP

<?php
foreach ( file($inputFile) as $line ) {
    echo (++$rowNumber)."\t".$line.PHP_EOL;
}

For STDIN:

<?php
$i=0;
while ($line = fgets(STDIN)) echo ++$i."\t".$line;
link|flag
show 4 more comments
vote up 8 vote down

It's pretty simple in bash as well:

#! /bin/bash

count=0
while read line; do
  echo "$count $line"
  count=$((count + 1))
done < $0
link|flag
show 1 more comment
vote up 7 vote down

Bash

nl testfile

the output is nice:

$ nl testfile
     1  line one
     2  line two 
     3  line three
link|flag
vote up 8 vote down

Python

with open("me.txt") as f:
    for number, line in enumerate(f):
        print('%d\t%s' % (number + 1, line.strip()))

This version has the advantage over the one above that it closes the file descriptor even if an exception occurs. This runs in Python 2.6 and 3.0 with no modifications, and will run in Python 2.5 if you do from __future__ import with_statement first

link|flag
show 9 more comments
vote up 5 vote down

Clojure

(use '(clojure.contrib duck-streams seq-utils))
(dorun 
 (for [[num line] (indexed (read-lines "foo.txt"))] 
   (println (inc num) line)))

Clojure is a functional language, but not purely functional, so this is pretty easy.

link|flag
show 2 more comments
vote up 8 vote down

Ruby

File.readlines(ARGV[1]).each_with_index{|line, index| puts "#{index+1}\t#{line}" }
link|flag
vote up 6 vote down

Ruby


File.open("Filename").each_with_index {|line,index| print "#{index}\t#{line}"}

This is more compact than you would necessarily do in a regular program, a real program would probably be more like the following:


in_file = File.open(filename)
.....
in_file.each_with_index do |line,index|
     ....
     #do stuff with line and index
     ...
end

link|flag
vote up 20 vote down

Commodore 64 BASIC

10 OPEN2,8,2,"0:TESTFILE,S,R"
20 L=1
30 INPUT#2,A$:IF STATUS AND 64 THEN GOTO 50
40 PRINT L "   " A$:L=L+1:GOTO30
50 CLOSE2

Much shorter than VB6.

link|flag
show 4 more comments
vote up 3 vote down

In REBOL:

REBOL []
i: 0
foreach line read/lines %foo.txt [
   print [i: i + 1 line]
   ]
link|flag
vote up 4 vote down

Fortran 90

This reads lines up to 80 characters long, with the file name supplied on standard input, and closes the file and quits if either an error or EOF is detected.

program read_file
    implicit none
    character(len=80) :: filename
    character(len=80) :: line
    integer           :: lineNumber 

    read(*,*) filename
    open(unit=13, file=filename, status='old', form='formatted')
    lineNumber = 1
    do while (.true.)
        read(13,fmt='(a80)',end=10,err=10) line
        write (*,*) lineNumber, line
        lineNumber = lineNumber + 1
    end do

 10 close(13)
end program read_file
link|flag
vote up 7 vote down

English :
From left to right!

<sorry>I couldn't help myself!</sorry>
link|flag
show 2 more comments
vote up 4 vote down

Pointless Haskell

main = interact $ unlines . zipWith ((. ('\t':)) . (++) . show) [1..] . lines

In response to Jon Ericson: lines and unlines are lazy. You can feed an infinite stream into this program, and it will still produce output incrementally.

link|flag
show 2 more comments
vote up 4 vote down

C# with Linq

This is slightly dirty using the All method as a ForEach to cause the enumeration to occur as ForEach doesn't exist in the BCL, but it's a simple one-liner (formatted onto 3 lines...):

File.ReadAllLines(path)
    .Select((line, index) => string.Format("{0}\t{1}", index, line))
    .All(line => { Console.WriteLine(line); return true; });
link|flag
vote up 3 vote down

Objective-C/Cocoa

I tried to keep the program as short as possible, without resorting to any standard C functions.

#import <Foundation/Foundation.h>
int main(int argc, char *argv[]) {
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    NSString *input = [[NSString alloc] initWithContentsOfFile:@"path_to_file"];
    NSArray *lineArray = [input componentsSeparatedByCharactersInSet:[NSCharacterSet newlineCharacterSet]];
    [input release];
    int lineNumber = 1;
    for (NSString *line in lineArray) {
        NSString *output = [NSString stringWithFormat:@"%d\t%@\n", lineNumber++, line];
        NSData *outputData = [output dataUsingEncoding:NSUTF8StringEncoding];
        [[NSFileHandle fileHandleWithStandardOutput] writeData:outputData];
    }
    [pool release];
    return 0;
}

Of course, for a large input file, you might improve performance by periodically releasing and recreating the autorelease pool inside of the loop. :-)

link|flag
vote up 3 vote down

J

>(4 :'<(>x),>y'/@:,(<@":"0@}.@i.@>:@#,.[)((<@((9{a.),[));.2)1!:1[3)1!:2[4

Seriously. Okay, maybe not so serious about the "your favorite language" part. But serious about it working:

$ jconsole
   >(4 :'<(>x),>y'/@:,(<@":"0@}.@i.@>:@#,.[)((<@((9{a.),[));.2)1!:1[3)1!:2[4
Line the first.
Next line.
End of communication.
^D
1       Line the first.
2       Next line.
3       End of communication.

I'm sure there's shorter ways of writing it -- my brain is simply not up to the challenge.

link|flag
vote up 5 vote down

Common Lisp

Uses the highly unlispy loop macro, but it does make it more compact.

(with-open-file (stream "/this/is/a/file")
  (loop for i from 1
        for line = (read-line stream nil)
        while line do (format t "~D~T~A~&" i line)))

For good measure, a version using the do macro (which is more lispy, as you can tell by the parentheses):

(with-open-file (stream "/this/is/a/file")
  (do ((i 1 (1+ i))
       (line (read-line stream nil)
             (read-line stream nil)))
      ((null line))
    (format t "~D~T~A~&" i line)))

And finally, a (tail) recursive version. For the sake of readability, I've defined the functions globally.

(defun print-enumerated-file (file &optional (init-count 1))
  (with-open-file (stream file)
    (print-enumerated-stream stream init-count)))

(defun print-enumerated-stream (stream &optional (init-count 1))
  (let ((line (read-line stream nil)))
    (when line
      (format t "~D~T~A~&" init-count line)
      (print-enumerated-stream stream (1+ init-count)))))
link|flag
vote up 2 vote down

SQL Anywhere

create table t ( id int default autoincrement, line long varchar );
load table t ( line ) using file 'file' defaults on;
select id || ' ' || line from t;
link|flag
1 2 next

Your Answer

Get an OpenID
or

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