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 1 vote down

Nemerle

Imperative style:

using System.IO.File;
using System.Console;

def ReadFileLineByLine(path)
{
    using (reader = OpenText(path))
    {
    	mutable lineNumber = 1;
    	while (!reader.EndOfStream)
    	{
    		WriteLine($"$lineNumber $(reader.ReadLine())");
    		++lineNumber;
    	}
    }
}

ReadFileLineByLine("test.txt");

Functional style:

using Nemerle.Utility;
using System.IO.File;
using System.Console;

ReadAllLines("test.txt").IterI((n, line) => WriteLine($"$(n+1) $line"));
link|flag
vote up 0 vote down

erlang

{ok, FD} = file:open("filename", [read]),
readall(FD),
close(FD).

readall(FD) ->
   readall(FD,[]).

readall(FD,eof) ->
   [];
readall(FD,{error,_}) ->
   [];
readall(FD,_) ->
   Data = io:get_line(FD),
   io:format("~s~n",[Data]),
   readall(FD,Data).
link|flag
vote up 3 vote down

Scala

var lineNumber = 1
for (line <- Source.fromFile("file.txt").getLines) {
    println(lineNumber + "\t" + line)
    lineNumber += 1
}
link|flag
vote up 1 vote down

Object Pascal

Procedural

var F: Text;
    S: String;
    I: Integer;
begin
  Assign(F, 'file.txt');
  Reset(F);
  I := 0;
  while(not eof(F)) do begin
    ReadLn(F, S);
    WriteLn(IntToStr(I) + #9 + S);
  end;
  Close(F);
end;

Object Oriented

var List: TStringList
begin
  List := TStringList.Create;
  List.LoadFromFile('file.txt');
  for I := 0 to List.Count - 1 do
    WriteLn(IntToStr(I) + #9 + List[I]);
  List.Free;
end;

(I never do the blind "with TSomethingOrOther.Create do" things, except when toying with game design.)

link|flag
show 1 more comment
vote up 1 vote down

Ruby

ARGF.each_with_index { |line, i| puts "#{i + 1}\t#{line}" }
link|flag
vote up 1 vote down

Ruby

while gets; puts "#{$.}\t#{$_}"; end
link|flag
vote up 0 vote down

Qbasic 1.1

Open "file.txt" for input as #1
do
input #1, pp$
print pp$
loop until (eof(#1))

Simple and easy no?

link|flag
show 1 more comment
vote up 2 vote down

D

scope file = new File ("sample.txt");

foreach (ulong n, char[] line; file) {
    writefln ("%d  %s", n, line);
}
link|flag
vote up 1 vote down

Server-side Actionscript 1 for Flash Media Server 3

var file = new File(fileName);
var i = 0;

file.open('text','read');
while (file.isOpen && !file.eof()) trace((++i)+' 'fileile.readln());
file.close();

The output is done in the log file of the application the code is running in and can only be seen by reading that file or in FMS Admin Console. :)

link|flag
vote up 2 vote down

F#

path |> System.IO.File.ReadAllLines 
     |> Seq.iteri( fun i l -> printfn "%d\t%s" ( i + 1 ) l )

and if line numbering started at 0 it would be as easy as:

 path |> System.IO.File.ReadAllLines 
      |> Seq.iteri( printfn "%d\t%s" )

I am not a fan of File.ReadAllLines as it returns an array of strings, so we won't get any output before the whole file is read. What we need is a sequence of strings that returns a line as soon as it's read. Something like:

let readlines file = seq {
    use stream = file |> System.IO.File.OpenText
    while not stream.EndOfStream do
       yield stream.ReadLine() 
        }

And then:

path |> readlines     
     |> Seq.iteri( fun i l -> printfn "%d\t%s" ( i + 1 ) l )
link|flag
vote up 0 vote down

Delphi

with TFileReader.Create('file') do
try

  while not EOF do
  begin
    WriteLine(IntToStr(Line) + ReadLine);
    Inc(Line);
  end;

finally
  Free;
end
link|flag
1  
I don't think this prints the line number or the line itself. – Jon Ericson Mar 25 at 16:43
show 2 more comments
vote up 0 vote down

C#

There's allready an answer up for C#, but when I was tought how to read textfile, I was shown this:

using(FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read))
{
  using(StreamReader sr = new StreamReader(fs))
  {
    while(!sr.EndOfStream)
    {
      list.Add(sr.ReadLine());
    }
  }
}

The 'using" statement automatically implements try/catch, final and close(), which can be usefull but also unwanted. In this case, it's a security measure.

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

Sticking to established convention, I will abstain from naming the language used here:

+<,
[
  >[>+>+<<-]>>[<<+>>-]<[->+>+<<]>>[-<<+>>]+++++++++<
  [
    >>>+<<[>+>[-]<<-]>[<+>-]>[<<++++++++++>>>+<-]<<-<-
  ]
  >>>>[<<<<+>>>>-]<<<[-]<<[->>+>+<<<]>>>[-<<<+>>>]++++++++++++++++++++++++
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  ++++<
  [
    >>>+<<[>+>[-]<<-]>[<+>-]>
    [
      <<++++++++++++++++++++++++++++++++++++++++++++++++++++
      ++++++++++++++++++++++++++++++++++++++++++++++++>>>+<-
    ]
    <<-<-
  ]
  >>>>[<<<<+>>>>-]<<<[-]++++++++[-<++++++>]<.>++++++++[-<------>]<[->+<]
  >[-<++++++++++>]<[-<->]++++++++[-<++++++>]<.[-]<[>+>+<<-]>>[-<<+>>]
  +++++++++<
  [
    >>>+<<[>+>[-]<<-]>[<+>-]>[<<++++++++++>>>+<-]<<-<-
  ]
  >>>>[<<<<+>>>>-]<<<[-]<[->+<]>[-<++++++++++>]<[-<->]++++++++[-<++++++>]
  <.[-]+++++++++.<+<----------[++++++++++.,----------]++++++++++.[-],
]

Notes:

  • Assumes the implementation makes no change to the cell on EOF, or sets the cell to 0 on EOF.
  • Will currently print all numbers as zero-padded, three-digit numbers.
  • In most implementations of the language, this will only be able to count to 255, at which point it will wrap around and tell you it's on line 0. If your implementation doesn't wrap, get a new one.
  • Most of that code is just printing the current line number as a string. Honestly, I could probably do a lot better if I stored it as a string in the first place. Then I wouldn't have these arbitrary line number wrappings, and it'd be easier to print. And probably a hell of a lot faster.
  • Speaking of which, this program takes 18 seconds to run with my current interpreter (written in Perl, translates source to Perl and eval()s the result) on a 500-line file. My C interpreter is broken at the moment, so I can't give a better benchmark.
  • Also, apparently "200" is printed as "1:0" and "100" as "0:0". "000" (when it wraps) prints just fine, though. I may need to do a little tweaking to figure out what is going on with that, but it's hard to notice while the program is running.

I may, at some point, try to rewrite this a little better. Maybe even with comments!

link|flag
vote up 1 vote down

LPC

This is an ALMOST one line version. I needed a local variable for the line numbering.

int x;
write( implode( map( explode( read_file("/sample.txt"),
   "\n" ), (: (++x) + "\t" + $1 :) ), "\n" ) + "\n" );

And now you know where all my free time went during college.

link|flag
vote up 0 vote down

FORTRAN

OPEN DATA FILE

open (file, FILE='yourDataFile.dat', STATUS='OLD')

READ DATA

read(file,*) n

if (n.GT.nmax) then

    write(*,*) 'Error: n = ', n, 'File is too large'

    goto 9999

endif

LOOP OVER DATA

do 10 i= 1, n

   read(u,100) dataX(i), dataY(i), dataZ(i)

10 enddo
link|flag
show 1 more comment
vote up 2 vote down

VB.NET

Dim lines() As String = System.IO.File.ReadAllLines("C:\file.txt")
For i As Integer = 0 To lines.Length - 1
    Console.WriteLine("{0} {1}", (i + 1).ToString, lines(i))
Next
link|flag
vote up 2 vote down

Java

With all the error checking that should do in this method. If you pass a null String, it chucks a wobbly...

public void printLinesWithNumbers(String filename) throws FileNotFoundException
{
	Scanner sc = null;
	try
	{
		sc = new Scanner(new File(filename));
		int i = 0;
		while(sc.hasNextLine())
			System.out.println(++i + "\t" + sc.nextLine());
	}
	finally
	{
		if(sc != null)
			sc.close();
	}
}
link|flag
vote up 4 vote down

Lua

local n = 1
for l in io.lines() do
  io.write(n, '\t', l, '\n')
  n = n + 1
end
link|flag
show 2 more comments
vote up 3 vote down

C#

using (StreamReader reader = new StreamReader(@"c:\MyFile.txt"))
    for (string line; (line = reader.ReadLine()) != null;)
        Console.WriteLine("{0} {1}", (Console.CursorTop + 1).ToString(), line);

Tried a few tricks to keep it compact. :-) [Notice, still disposing Reader and no boxing :-)]

link|flag
vote up 1 vote down

CFScript in ColdFusion 8

<cfscript> 
    myfile = FileOpen("c:/text.txt","read");
    while(!FileIsEOF(myfile))
        WriteOutput(FileReadLine(myfile));
    FileClose(myfile);
</cfscript>
link|flag
vote up 12 vote down

DailyWTF

  1. Print out file
  2. Put on wooden table
  3. Photograph
  4. Paste into Excel
link|flag
3  
Since it's line-by-line, shouldn't it go: 2a: Use scissors to cut printout into lines; 3: Photograph each line individually; 4: Paste each photo into a cell in Excel? – Anthony Rizk Mar 30 at 12:44
show 1 more comment
vote up 8 vote down

C

Without MAX_LINE making people sad. (There's still a max buffer size, but longer lines don't affect output.)

#include <stdio.h>
#include <string.h>
int main() {
    char buf[1024];
    int i = 0, nl = 1;
    while (fgets(buf, sizeof(buf), stdin)) {
        int l = strlen(buf);
        if (nl)
            printf("%d\t%s", ++i, buf);
        else
            fputs(buf, stdout);
        nl = l > 0 && buf[l - 1] == '\n';
    }
    return 0;
}
link|flag
vote up 3 vote down

Common Lisp

(defun number-lines (file)
  (with-open-file (stream file)
    (loop for line = (read-line stream nil nil) and line-number from 1
          while line do (format t "~a~a~a~%" line-number #\tab line))))
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
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 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 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 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 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
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.