Read a specific line from a file: Difference between revisions

m
→‎{{header|Wren}}: Changed to Wren S/H
m (→‎{{header|Wren}}: Changed to Wren S/H)
 
(12 intermediate revisions by 6 users not shown)
Line 18:
 
=={{header|11l}}==
<langsyntaxhighlight lang="11l">V f = File(‘input.txt’)
V line = 3
 
L 0 .< line - 1
f.read_line()
print(f.read_line())</langsyntaxhighlight>
 
=={{header|Action!}}==
In the following solution the input file is loaded from H6 drive. Altirra emulator automatically converts CR/LF character from ASCII into 155 character in ATASCII charset used by Atari 8-bit computer when one from H6-H10 hard drive under DOS 2.5 is used.
<langsyntaxhighlight Actionlang="action!">BYTE FUNC ReadLine(CHAR ARRAY fname CARD index CHAR ARRAY result)
CHAR ARRAY line(255)
CARD curr
Line 72:
Test(fname,24)
Test(fname,50)
RETURN</langsyntaxhighlight>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/Read_a_specific_line_from_a_file.png Screenshot from Atari 8-bit computer]
Line 91:
 
=={{header|Ada}}==
<langsyntaxhighlight lang="ada">with Ada.Text_IO; use Ada.Text_IO;
 
procedure Rosetta_Read is
Line 119:
Put_Line ("Line 7 is too long to load.");
Close (File);
end Rosetta_Read;</langsyntaxhighlight>
 
=={{header|Aime}}==
<langsyntaxhighlight lang="aime">void
read_line(text &line, text path, integer n)
{
Line 147:
 
0;
}</langsyntaxhighlight>
 
=={{header|ALGOL 68}}==
{{works with|ALGOL 68G|Any - tested with release 2.8.win32}}
<langsyntaxhighlight lang="algol68"># reads the line with number "number" (counting from 1) #
# from the file named "file name" and returns the text of the #
# in "line". If an error occurs, the result is FALSE and a #
Line 220:
print( ( "unable to read line: """ + err + """" ) )
FI
)</langsyntaxhighlight>
=={{header|Amazing Hopper}}==
<syntaxhighlight lang="amazing hopper">
<lang Amazing Hopper>
#include <hopper.h>
#define MAX_LINE_SIZE 1000
Line 238:
fclose(fd)
exit(0)
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 244:
Error search line (code=101): GET ROW'MARK OVERFLOW
</pre>
 
=={{header|Arturo}}==
 
<syntaxhighlight lang="arturo">lineToRead: 3
 
lineRead: get read.lines "myfile.txt" lineToRead
 
print lineRead</syntaxhighlight>
 
=={{header|AutoHotkey}}==
<langsyntaxhighlight AutoHotkeylang="autohotkey">FileReadLine, OutputVar, filename.txt, 7
if ErrorLevel
MsgBox, There was an error reading the 7th line of the file</langsyntaxhighlight>
 
=={{header|AWK}}==
<langsyntaxhighlight lang="awk">#!/usr/bin/awk -f
#usage: readnthline.awk -v lineno=6 filename
 
Line 263 ⟶ 271:
print storedline
}
</syntaxhighlight>
</lang>
 
=={{header|BASIC}}==
==={{header|BASIC256}}===
<langsyntaxhighlight lang="basic256">f = freefile
filename$ = "input.txt"
open f, filename$
Line 283 ⟶ 291:
if cont < lineapedida then print "There are only "; cont; " lines in the file"
close f
end</langsyntaxhighlight>
 
==={{header|OxygenBasic}}===
library OOP
<syntaxhighlight lang="text">
uses stringutil
new Textarray t
Line 294 ⟶ 302:
' print t.lineCount
del t
</syntaxhighlight>
</lang>
 
==={{header|QBasic}}===
{{works with|QBasic}}
<langsyntaxhighlight QBasiclang="qbasic">f = FREEFILE
OPEN "input.txt" FOR INPUT AS #f
 
Line 312 ⟶ 320:
LOOP
IF cont < lineapedida THEN PRINT "There are only "; cont; " lines in the file"
CLOSE #1</langsyntaxhighlight>
 
==={{header|True BASIC}}===
<langsyntaxhighlight lang="qbasic">LET filename$ = "input.txt"
OPEN #1: NAME filename$, ORG TEXT, ACCESS INPUT, CREATE OLD
 
Line 330 ⟶ 338:
IF cont < lineapedida THEN PRINT "There are only "; cont; " lines in the file"
CLOSE #1
END</langsyntaxhighlight>
 
==={{header|Yabasic}}===
<langsyntaxhighlight lang="yabasic">filename$ = "input.txt"
open filename$ for reading as #1
 
Line 348 ⟶ 356:
if cont < lineapedida print "There are only ", cont, " lines in the file"
close #1
end</langsyntaxhighlight>
 
=={{header|Batch File}}==
<langsyntaxhighlight lang="dos">
@echo off
 
Line 361 ⟶ 369:
echo Line 7 is: %line7%
pause>nul
</syntaxhighlight>
</lang>
{{in}}
<pre>
Line 381 ⟶ 389:
=={{header|BBC BASIC}}==
{{works with|BBC BASIC for Windows}}
<langsyntaxhighlight lang="bbcbasic"> filepath$ = @lib$ + "..\licence.txt"
requiredline% = 7
Line 393 ⟶ 401:
IF ASCtext$=10 text$ = MID$(text$,2)
PRINT text$</langsyntaxhighlight>
 
=={{header|C}}==
Mmap file and search for offsets to certain line number. Since mapped file really is memory, there's no extra storage procedure once offsets are found.
<langsyntaxhighlight lang="c">#include <unistd.h>
#include <sys/types.h>
#include <sys/mman.h>
Line 462 ⟶ 470:
 
return ret;
}</langsyntaxhighlight>
 
===Alternate Version===
Line 468 ⟶ 476:
This version does not rely on POSIX APIs such as <tt>mmap</tt>, but rather sticks to ANSI C functionality. This version also works with non-seekable files, so it can be fed by a pipe. It performs limited but adequate error checking. That is, <tt>get_nth_line</tt> returns NULL on all failures, and the caller can distinguish EOF, file read error and out of memory by calling <tt>feof()</tt> and <tt>ferror()</tt> on the input file.
 
<langsyntaxhighlight lang="c">#include <stdio.h>
#include <stdlib.h>
 
Line 569 ⟶ 577:
return 0;
}
</syntaxhighlight>
</lang>
 
=={{header|C sharp}}==
 
<langsyntaxhighlight Clang="c sharp">using System;
using System.IO;
 
Line 616 ⟶ 624:
}
}
}</langsyntaxhighlight>
 
=={{header|C++}}==
<langsyntaxhighlight lang="cpp">#include <string>
#include <fstream>
#include <iostream>
Line 652 ⟶ 660:
return 1 ;
}
}</langsyntaxhighlight>
 
=={{header|Clojure}}==
<langsyntaxhighlight lang="clojure">(defn read-nth-line
"Read line-number from the given text file. The first line has the number 1."
[file line-number]
(with-open [rdr (clojure.java.io/reader file)]
(nth (line-seq rdr) (dec line-number))))</langsyntaxhighlight>
 
{{out}}
Line 667 ⟶ 675:
=={{header|Common Lisp}}==
 
<langsyntaxhighlight lang="lisp">(defun read-nth-line (file n &aux (line-number 0))
"Read the nth line from a text file. The first line has the number 1"
(assert (> n 0) (n))
Line 678 ⟶ 686:
if (and line (= line-number n))
do (return line))))
</syntaxhighlight>
</lang>
 
Example call:
Line 686 ⟶ 694:
=={{header|D}}==
simply
<syntaxhighlight lang="d">
<lang d>
void main() {
import std.stdio, std.file, std.string;
Line 693 ⟶ 701:
writeln((file_lines.length > 6) ? file_lines[6] : "line not found");
}
</syntaxhighlight>
</lang>
 
or, line by line
<langsyntaxhighlight lang="d">import std.stdio;
 
void main() {
Line 717 ⟶ 725:
writefln("the file only contains %d lines", countLines);
}
}</langsyntaxhighlight>
<pre>
line 7: foreach (char[] line; f.byLine()) {</pre>
Line 723 ⟶ 731:
{{libheader| System.SysUtils}}
{{Trans|Pascal}}
<syntaxhighlight lang="delphi">
<lang Delphi>
program Read_a_specific_line_from_a_file;
 
Line 761 ⟶ 769:
Writeln(ReadLine(7, 'test'));
Readln;
end.</langsyntaxhighlight>
 
=={{header|Elixir}}==
The idea is to stream the file, filter the elements and get the remaining element. If does not exist, nil will be throw and we will pattern match with print_line(_). If the value exists, it will match print_line({value, _line_number}) and the value of the line will be printed.
<syntaxhighlight lang="elixir">
<lang Elixir>
defmodule LineReader do
def get_line(filename, line) do
Line 777 ⟶ 785:
defp print_line(_), do: {:error, "Invalid Line"}
end
</syntaxhighlight>
</lang>
 
=={{header|Erlang}}==
Using function into_list/1 from [[Read_a_file_line_by_line]].
There is no behaviour specified after printing an error message, so I throw an exception. An alternative would be to continue with a default value?
<syntaxhighlight lang="erlang">
<lang Erlang>
-module( read_a_specific_line ).
 
Line 813 ⟶ 821:
line_nr_error( function_clause ) -> too_few_lines_in_file;
line_nr_error( Error ) -> Error.
</syntaxhighlight>
</lang>
 
{{out}}
Line 830 ⟶ 838:
 
=={{header|F_Sharp|F#}}==
<langsyntaxhighlight lang="fsharp">open System
open System.IO
 
Line 844 ⟶ 852:
// if not not enough lines available
Console.WriteLine(line)
0</langsyntaxhighlight>
 
=={{header|Factor}}==
<langsyntaxhighlight lang="factor">USING: continuations fry io io.encodings.utf8 io.files kernel
math ;
IN: rosetta-code.nth-line
Line 861 ⟶ 869:
print ;
 
MAIN: nth-line-demo</langsyntaxhighlight>
 
=={{header|Fortran}}==
A lot of petty annoyances can arise in the attempt to complete the desired action, and so the function does not simply return ''true'' or ''false'', nor does it return some drab integer code that would require an auxiliary array of explanatory texts somewhere... Instead, it returns a message reporting on its opinion, with an ad-hoc scheme. If the first character is a space, all is well, otherwise a ! indicates some severe problem while a + indicates a partial difficulty. The text of the desired record is returned via a parameter, thus the caller can be the one responsible for deciding how much space to provide for it. F2000 has provision for allocating character strings of the needed length, but there is no attempt to use that here as the key requirement is for the length to be decided during the process of the READ statement.
 
The example uses F90 only because the MODULE protocol enables usage of a function without having to re-declare its type in every calling routine. Otherwise this is F77 style. Some compilers become confused or raise an error over the manipulation of a function's name as if it were an ordinary variable. In such a case an auxiliary variable can be used with its value assigned to the function name on exit.<langsyntaxhighlight Fortranlang="fortran"> MODULE SAMPLER !To sample a record from a file. SAM00100
CONTAINS SAM00200
CHARACTER*20 FUNCTION GETREC(N,F,IS) !Returns a status. SAM00300
Line 933 ⟶ 941:
666 WRITE (MSG,*) "Can't get the record!" POK02700
END !That was easy. POK02800
</syntaxhighlight>
</lang>
Output:
<pre>
Line 953 ⟶ 961:
Obviously, this only works because of the special nature of the file being read. Other systems offer a filesystem that does not regard record sizes or separators as being a part of the record that is read or written, and in such a case, a CR (or CRLF, or whatever) does not appear amongst the data. Some systems escalate to enabling such random access for varying-length records, or access by a key text rather than a record number (so that a key of "SAM00700" might be specified), and acronyms such as ISAM start appearing.
 
In Fortran 77 there was no verbose REC=''n'' facility, instead one used <langsyntaxhighlight Fortranlang="fortran">READ (F'7) STUFF(1:80)</langsyntaxhighlight> - that is, an apostrophe even though an at-sign was available - and again the source file highlighting is confused. An interesting alternative was to use the FIND(F'7) statement instead, followed by an ordinary READ (or WRITE) not necessarily specifying the desired record number. The point of this is that the FIND statement would initiate the pre-positioning for the next I/O ''asynchronously'' so that other processing could intervene between it and the READ or WRITE, and in situations more complex than this example, there could be startling changes in performance. If not always positive ones when many files were being accessed on one physical disc drive. Unfortunately, later Fortran extensions have abandoned this statement, while multiprocessing has proliferated.
 
 
The GO TO style of handling mishaps in an I/O statement makes a simple structure difficult - note that the reception area ought not be fallen into by normal execution, thus the STOP. Unfortunately, READ and WRITE statements do not return a result that could be tested in an IF-statement or WHILE-loop, but this can be approached with only a little deformation: <langsyntaxhighlight Fortranlang="fortran"> READ (F,REC = 7,ERR = 666, IOSTAT = IOSTAT) STUFF(1:80)
666 IF (IOSTAT.NE.0) THEN
WRITE (MSG,*) "Can't get the record: code",IOSTAT
ELSE
WRITE (MSG,1) "Record",STUFF(1:80)
END IF</langsyntaxhighlight>
Where IOSTAT is an integer variable (and also a key word) and this formulation means not having to remember which way the assignment goes; it is left to right. The error code numbers are unlikely to be the same across different systems, so experimentation is in order. It would be much nicer to be able to write something like <code>IF (READ (F,REC = 7, IOSTAT = IOSTAT) STUFF(1:80)) THEN ''etc.''</code> or <code>DO WHILE(''etc.'')</code>
 
=={{header|FreeBASIC}}==
<langsyntaxhighlight lang="freebasic">' FB 1.05.0 Win64
 
Open "input.txt" For Input As #1
Line 989 ⟶ 997:
Print
Print "Press any key to quit"
Sleep </langsyntaxhighlight>
 
=={{header|Frink}}==
<langsyntaxhighlight lang="frink">nthLine[filename, lineNum] :=
{
line = nth[lines[filenameToURL[filename]], lineNum-1]
Line 1,002 ⟶ 1,010:
return undef
}
}</langsyntaxhighlight>
 
=={{header|FutureBasic}}==
Uses FB's native file$openpanel command that opens a dialog window and allows the user to select the file to read.
<langsyntaxhighlight lang="futurebasic">window 1
include "ConsoleWindow"
 
dim as long i : i = 1
dim as Str255 s, lineSeven
dim as CFURLRef url
 
ifurl (= files$(openpanel _CFURLRefOpen, "TEXT"1, @"Select text file", @url ) )
if ( url )
open "I", 2, @url
open "I", 2, url
while ( not eof(2) )
line input #2, s
if ( i == 7 )
lineSeven = s : break
end if
i++
wend
close 2
if ( lineSeven[0] )
print lineSeven
else
print "File did not contain seven lines, or line was empty."
end if
end if
 
HandleEvents</syntaxhighlight>
if ( lineSeven[0] )
print lineSeven
else
print "File did not contain seven lines, or line was empty."
end if
</lang>
 
Input text file:
Line 1,051 ⟶ 1,060:
 
=={{header|Go}}==
<langsyntaxhighlight lang="go">package main
 
import (
Line 1,101 ⟶ 1,110:
}
return line, nil
}</langsyntaxhighlight>
 
=={{header|Groovy}}==
<langsyntaxhighlight lang="groovy">def line = null
new File("lines.txt").eachLine { currentLine, lineNumber ->
if (lineNumber == 7) {
Line 1,110 ⟶ 1,119:
}
}
println "Line 7 = $line"</langsyntaxhighlight>
 
=={{header|Haskell}}==
 
<langsyntaxhighlight Haskelllang="haskell">main :: IO ()
main = do contents <- readFile filename
case drop 6 $ lines contents of
[] -> error "File has less than seven lines"
l:_ -> putStrLn l
where filename = "testfile"</langsyntaxhighlight>
 
=={{header|Icon}} and {{header|Unicon}}==
Line 1,126 ⟶ 1,135:
While it is certainly possible to read at file at specific offsets without reading each line via ''seek'', with files using line feed terminated variable length records something has to read the data to determine the 7th record. This solution uses a combination of repeated alternation and generation limiting to achieve this. The counter is simply to discover if there are enough records.
 
<langsyntaxhighlight Iconlang="icon">procedure main()
write(readline("foo.bar.txt",7)|"failed")
end
Line 1,135 ⟶ 1,144:
close(f)
if i = 0 then return line
end</langsyntaxhighlight>
 
=={{header|J}}==
<langsyntaxhighlight lang="j">readLine=: 4 :0
(x-1) {:: <;.2 ] 1!:1 boxxopen y
)</langsyntaxhighlight>
 
Thus:
<langsyntaxhighlight lang="bash">$ cal 2011 > cal.txt</langsyntaxhighlight>
 
<langsyntaxhighlight lang="j"> 7 readLine 'cal.txt'
9 10 11 12 13 14 15 13 14 15 16 17 18 19 13 14 15 16 17 18 19</langsyntaxhighlight>
 
Note that this code assumes that the last character in the file is the line end character, and that the line end character is a part of the line to be retrieved.
 
'''Tacit alternative'''
<langsyntaxhighlight lang="j">require 'files' NB. required for versions before J701
readLineT=: <:@[ {:: 'b'&freads@]</langsyntaxhighlight>
This is not quite equivalent to the code above as it handles cross-platform line-endings and those line end character(s) are removed from the result.
 
Line 1,158 ⟶ 1,167:
<tt>example: java -cp . LineNbr7 LineNbr7.java</tt><br>
<tt>output : line 7: public static void main(String[] args) throws Exception {;</tt>
<langsyntaxhighlight lang="java">package linenbr7;
 
import java.io.*;
Line 1,190 ⟶ 1,199:
}
}
}</langsyntaxhighlight>
 
===Using Java 11===
<syntaxhighlight lang="java">
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
 
public final class ReadSpecificLineFromFile {
 
public static void main(String[] aArgs) throws IOException {
String fileName = "input.txt";
Path filePath = Path.of(fileName);
String seventhLine = Files.lines(filePath).skip(6).findFirst().orElse(ERROR_TOO_FEW_LINES);
String messageToUser = seventhLine.isBlank() ? ERROR_EMPTY_LINE : seventhLine;
System.out.println(messageToUser);
}
private static final String ERROR_TOO_FEW_LINES = "File has fewer than 7 lines";
private static final String ERROR_EMPTY_LINE = "Line 7 is empty";
 
}
</syntaxhighlight>
{{ out }}
<pre>
Either line 7 of the file or the appropriate error message.
</pre>
 
=={{header|jq}}==
Line 1,199 ⟶ 1,236:
* "foreach" - a control structure for iterating over a stream
* "break" - for breaking out of a loop
<langsyntaxhighlight lang="jq"># Input - a line number to read, counting from 1
# Output - a stream with 0 or 1 items
def read_line:
Line 1,205 ⟶ 1,242:
| label $top
| foreach inputs as $line
(0; .+1; if . == $in then $line, break $top else empty end) ;</langsyntaxhighlight>
'''Example:''' Read line number $line (to be provided on the command line), counting from 1
<langsyntaxhighlight lang="jq">$line | tonumber
| if . > 0 then read_line
else "$line (\(.)) should be a non-negative integer"
end</langsyntaxhighlight>
{{out}}
<langsyntaxhighlight lang="sh">$ jq -n -r 'range(0;20) | tostring' | jq --arg line 10 -n -R -r -f Read_a_specific_line_from_a_file.jq
9</langsyntaxhighlight>
 
=={{header|Julia}}==
The short following snippet of code actually stores all the lines from the file in an array and displays the seventh element of the array, returning an error if there is no such element. Since the array is not referenced, it will be garbage collected when needed. The filehandle is closed upon completion of the task, be it successful or not.
<langsyntaxhighlight Julialang="julia">open(readlines, "path/to/file")[7]</langsyntaxhighlight>
The next function reads n lines in the file and displays the last read if possible, or returns a short message. Here again, the filehandle is automatically closed after the task. Note that the first line is returned if a negative number is given as the line number.
<langsyntaxhighlight Julialang="julia">function read_nth_lines(stream, num)
for i = 1:num-1
readline(stream)
Line 1,225 ⟶ 1,262:
result = readline(stream)
print(result != "" ? result : "No such line.")
end</langsyntaxhighlight>
{{Out}}
<pre>julia> open(line -> read_nth_lines(line, 7), "path/to/file")
"Hi, I am the content of the seventh line\n"</pre>
 
=={{header|K}}==
{{works with|ngn/k}}<syntaxhighlight lang=K>(0:"135-0.txt")7
"will have to check the laws of the country where you are located before\r"</syntaxhighlight>
 
Note that line 0 is the first line of the file. If you dislike the concept of a "zeroth line", you should use 7-1 rather than 7 to retrieve the seventh line:
 
<syntaxhighlight lang=K>(0:"135-0.txt")7-1
"www.gutenberg.org. If you are not located in the United States, you\r"</syntaxhighlight>
 
=={{header|Kotlin}}==
<langsyntaxhighlight lang="scala">// version 1.1.2
 
import java.io.File
Line 1,262 ⟶ 1,308:
Line 7
Line 8
*/</langsyntaxhighlight>
 
{{out}}
Line 1,270 ⟶ 1,316:
 
=={{header|Lasso}}==
<langsyntaxhighlight Lassolang="lasso">local(f) = file('unixdict.txt')
handle => { #f->close }
local(this_line = string,line = 0)
Line 1,279 ⟶ 1,325:
}
#this_line // 6th, which is the 7th line in the file
</syntaxhighlight>
</lang>
 
=={{header|Liberty BASIC}}==
We read the whole file into memory, and use 'word$( string, number, delimiter)'. Line delimiter is assumed to be CRLF, and the file is assumed to exist at the path given.
<langsyntaxhighlight lang="lb">fileName$ ="F:\sample.txt"
requiredLine =7
 
Line 1,293 ⟶ 1,339:
if line7$ =chr$( 13) +chr$( 10) or line7$ ="" then notice "Empty line! ( or file has fewer lines)."
 
print line7$</langsyntaxhighlight>
 
=={{header|Lua}}==
<langsyntaxhighlight lang="lua">function fileLine (lineNum, fileName)
local count = 0
for line in io.lines(fileName) do
Line 1,305 ⟶ 1,351:
end
 
print(fileLine(7, "test.txt"))</langsyntaxhighlight>
 
=={{header|Maple}}==
<langsyntaxhighlight Maplelang="maple">path := "file.txt":
specificLine := proc(path, num)
local i, input:
Line 1,317 ⟶ 1,363:
if i = num+1 then printf("Line %d, %s", num, input):
elif i <= num then printf ("Line number %d is not reached",num): end if:
end proc:</langsyntaxhighlight>
 
=={{header|Mathematica}}/{{header|Wolfram Language}}==
<langsyntaxhighlight Mathematicalang="mathematica"> If[# != EndOfFile , Print[#]]& @ ReadList["file", String, 7]</langsyntaxhighlight>
 
=={{header|MATLAB}} / {{header|Octave}}==
 
<syntaxhighlight lang="matlab">
<lang Matlab>
eln = 7; % extract line number 7
line = '';
Line 1,343 ⟶ 1,389:
end;
printf('line %i: %s\n',eln,line);
</langsyntaxhighlight>
<nowiki>Insert non-formatted text here</nowiki>
 
=={{header|MoonScript}}==
{{trans|Lua}}
<langsyntaxhighlight MoonScriptlang="moonscript">iter = io.lines 'test.txt'
for i=0, 5
error 'Not 7 lines in file' if not iter!
 
print iter!</langsyntaxhighlight>
 
=={{header|Nanoquery}}==
<langsyntaxhighlight Nanoquerylang="nanoquery">def getline(fname, linenum)
contents = null
try
Line 1,367 ⟶ 1,413:
end
end
end</langsyntaxhighlight>
 
=={{header|NetRexx}}==
<langsyntaxhighlight NetRexxlang="netrexx">/* NetRexx */
options replace format comments java crossref symbols nobinary
 
Line 1,422 ⟶ 1,468:
method isFalse() public static returns boolean
return \(1 == 1)
</syntaxhighlight>
</lang>
 
=={{header|Nim}}==
 
<langsyntaxhighlight lang="nim">import strformat
 
proc readLine(f: File; num: Positive): string =
Line 1,438 ⟶ 1,484:
echo f.readLine(7)
f.close()
</syntaxhighlight>
</lang>
 
=={{header|OCaml}}==
Line 1,444 ⟶ 1,490:
OCaml does not provide built-in facilities to obtain a particular line from a file. It only provides a function to read one line from a file from the current position in the input channel [http://caml.inria.fr/pub/docs/manual-ocaml/libref/Pervasives.html#VALinput_line input_line]. We can use this function to get the seventh line from a file, for example as follows:
 
<langsyntaxhighlight lang="ocaml">let input_line_opt ic =
try Some (input_line ic)
with End_of_file -> None
Line 1,464 ⟶ 1,510:
 
let () =
print_endline (nth_line 7 Sys.argv.(1))</langsyntaxhighlight>
 
=={{header|PARI/GP}}==
Line 1,471 ⟶ 1,517:
=={{header|Pascal}}==
{{works with|Free_Pascal}}
<langsyntaxhighlight lang="pascal">Program FileTruncate;
 
uses
Line 1,508 ⟶ 1,554:
Close(myfile);
writeln(line);
end.</langsyntaxhighlight>
Output:
<pre>
Line 1,515 ⟶ 1,561:
 
=={{header|Perl}}==
<langsyntaxhighlight lang="perl">#!/usr/bin/perl -s
# invoke as <scriptname> -n=7 [input]
while (<>) { $. == $n and print, exit }
die "file too short\n";</langsyntaxhighlight>
 
=={{header|Phix}}==
No specific mechanism, but simple enough. If the file is suitably small:
<!--<langsyntaxhighlight Phixlang="phix">-->
<span style="color: #004080;">object</span> <span style="color: #000000;">lines</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">get_text</span><span style="color: #0000FF;">(</span><span style="color: #008000;">"TEST.TXT"</span><span style="color: #0000FF;">,</span><span style="color: #004600;">GT_LF_STRIPPED</span><span style="color: #0000FF;">)</span>
<span style="color: #008080;">if</span> <span style="color: #004080;">sequence</span><span style="color: #0000FF;">(</span><span style="color: #000000;">lines</span><span style="color: #0000FF;">)</span> <span style="color: #008080;">and</span> <span style="color: #7060A8;">length</span><span style="color: #0000FF;">(</span><span style="color: #000000;">lines</span><span style="color: #0000FF;">)>=</span><span style="color: #000000;">7</span> <span style="color: #008080;">then</span>
Line 1,529 ⟶ 1,575:
<span style="color: #0000FF;">?</span><span style="color: #008000;">"no line 7"</span>
<span style="color: #008080;">end</span> <span style="color: #008080;">if</span>
<!--</langsyntaxhighlight>-->
For bigger files:
<!--<langsyntaxhighlight Phixlang="phix">-->
<span style="color: #004080;">integer</span> <span style="color: #000000;">fn</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">open</span><span style="color: #0000FF;">(</span><span style="color: #008000;">"TEST.TXT"</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"r"</span><span style="color: #0000FF;">)</span>
<span style="color: #008080;">for</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">=</span><span style="color: #000000;">1</span> <span style="color: #008080;">to</span> <span style="color: #000000;">6</span> <span style="color: #008080;">do</span>
Line 1,538 ⟶ 1,584:
<span style="color: #0000FF;">?</span><span style="color: #7060A8;">gets</span><span style="color: #0000FF;">(</span><span style="color: #000000;">fn</span><span style="color: #0000FF;">)</span> <span style="color: #000080;font-style:italic;">-- (shows -1 if past eof)</span>
<span style="color: #7060A8;">close</span><span style="color: #0000FF;">(</span><span style="color: #000000;">fn</span><span style="color: #0000FF;">)</span>
<!--</langsyntaxhighlight>-->
 
=={{header|Phixmonti}}==
<langsyntaxhighlight Phixmontilang="phixmonti">include ..\Utilitys.pmt
 
argument 1 get "r" fopen var f drop
Line 1,548 ⟶ 1,594:
f fgets number? if f fclose exitfor else nip nip endif
endfor
print /# show -1 if past eof #/</langsyntaxhighlight>
 
=={{header|PHP}}==
<langsyntaxhighlight lang="php"><?php
$DOCROOT = $_SERVER['DOCUMENT_ROOT'];
Line 1,567 ⟶ 1,613:
if (!$fp) die("Input file not found!");
echo fileLine(7, $fp);
?></langsyntaxhighlight>
 
=={{header|PicoLisp}}==
<langsyntaxhighlight PicoLisplang="picolisp">(in "file.txt"
(do 6 (line))
(or (line) (quit "No 7 lines")) )</langsyntaxhighlight>
 
=={{header|PL/I}}==
<langsyntaxhighlight lang="pli">
declare text character (1000) varying, line_no fixed;
 
Line 1,588 ⟶ 1,634:
put skip list (text);
next: ;
</syntaxhighlight>
</lang>
 
=={{header|PL/M}}==
This is written for the original 8080 PL/M compiler and can be run under CP/M or an emulator or clone.
<br>The name of the file to read and the line number to read should be specified on the command line. E.g., if the source is in a file called READLINE.PLM and has been compiled to READLINE.COM, then the command <code>READLINE READLINE.PLM 7</code> would display the 7th line of the source.
<langsyntaxhighlight lang="pli">100H: /* READ A SPECIFIC LINE FROM A FILE */
 
DECLARE FALSE LITERALLY '0', TRUE LITERALLY '0FFH';
Line 1,725 ⟶ 1,771:
CALL EXIT;
 
EOF</langsyntaxhighlight>
 
=={{header|PowerShell}}==
{{works with|PowerShell|3.0}}
<syntaxhighlight lang="powershell">
<lang Powershell>
$file = Get-Content c:\file.txt
if ($file.count -lt 7)
Line 1,737 ⟶ 1,783:
$file | Where Readcount -eq 7 | set-variable -name Line7
}
</syntaxhighlight>
</lang>
 
=={{header|PureBasic}}==
<langsyntaxhighlight lang="purebasic">Structure lineLastRead
lineRead.i
line.s
Line 1,771 ⟶ 1,817:
MessageRequester("Error", "Couldn't open file " + filename + ".")
EndIf
EndIf </langsyntaxhighlight>
 
=={{header|Python}}==
Line 1,777 ⟶ 1,823:
Using only builtins (note that <code>enumerate</code> is zero-based):
 
<langsyntaxhighlight lang="python">with open('xxx.txt') as f:
for i, line in enumerate(f):
if i == 6:
Line 1,783 ⟶ 1,829:
else:
print('Not 7 lines in file')
line = None</langsyntaxhighlight>
 
Using the <code>islice</code> iterator function from the [https://docs.python.org/3/library/itertools.html#itertools.islice itertools] standard library module, which applies slicing to an iterator and thereby skips over the first six lines:
 
<langsyntaxhighlight lang="python">from itertools import islice
 
with open('xxx.txt') as f:
Line 1,793 ⟶ 1,839:
line = next(islice(f, 6, 7))
except StopIteration:
print('Not 7 lines in file')</langsyntaxhighlight>
 
Similar to the Ruby implementation, this will read up to the first 7 lines, returning only the last. Note that the 'readlines' method reads the entire file contents into memory first as opposed to using the file iterator itself which is more performant for large files.
<langsyntaxhighlight lang="python">
print open('xxx.txt').readlines()[:7][-1]
</syntaxhighlight>
</lang>
 
=={{header|R}}==
<langsyntaxhighlight Rlang="r">> seven <- scan('hw.txt', '', skip = 6, nlines = 1, sep = '\n') # too short
Read 0 items
> seven <- scan('Incoming/quotes.txt', '', skip = 6, nlines = 1, sep = '\n')
Read 1 item
</syntaxhighlight>
</lang>
 
=={{header|Racket}}==
<syntaxhighlight lang="racket">
<lang Racket>
#lang racket
 
Line 1,818 ⟶ 1,864:
(call-with-input-file "some-file"
(λ(i) (for/last ([line (in-lines i)] [n 7]) line))))
</syntaxhighlight>
</lang>
 
=={{header|Raku}}==
(formerly Perl 6)
<syntaxhighlight lang="raku" perl6line>say lines[6] // die "Short file";</langsyntaxhighlight>
Without an argument, the <tt>lines</tt> function reads filenames from the command line, or defaults to standard input. It then returns a lazy list, which we subscript to get the 7th element. Assuming this code is in a program called <tt>line7</tt>:
<pre>$ cal 2011 > cal.txt
Line 1,835 ⟶ 1,881:
 
=={{header|REBOL}}==
<langsyntaxhighlight lang="rebol">
x: pick read/lines request-file/only 7
either x [print x] [print "No seventh line"]
</syntaxhighlight>
</lang>
 
=={{header|Red}}==
<langsyntaxhighlight Redlang="red">>> x: pick read/lines %file.txt 7
 
case [
Line 1,847 ⟶ 1,893:
(length? x) = 0 [print "Line 7 is empty"]
(length? x) > 0 [print append "Line seven = " x]
]</langsyntaxhighlight>
 
=={{header|REXX}}==
===for newer REXXes===
<langsyntaxhighlight REXXlang="rexx">/*REXX program reads a specific line from a file (and displays the length and content).*/
parse arg FID n . /*obtain optional arguments from the CL*/
if FID=='' | FID=="," then FID= 'JUNK.TXT' /*not specified? Then use the default.*/
Line 1,868 ⟶ 1,914:
exit /*stick a fork in it, we're all done. */
/*──────────────────────────────────────────────────────────────────────────────────────*/
ser: say; say '***error!*** File ' FID " " arg(1); say; exit 13</langsyntaxhighlight>
 
===for older REXXes===
Some older REXXes don't support a 2<sup>nd</sup> argument for the &nbsp; '''linein''' &nbsp; BIF, so here is an alternative:
<langsyntaxhighlight REXXlang="rexx">/*REXX program reads a specific line from a file (and displays the length and content).*/
parse arg FID n . /*obtain optional arguments from the CL*/
if FID=='' | FID=="," then FID= 'JUNK.TXT' /*not specified? Then use the default.*/
Line 1,892 ⟶ 1,938:
exit /*stick a fork in it, we're all done. */
/*──────────────────────────────────────────────────────────────────────────────────────*/
ser: say; say '***error!*** File ' FID " " arg(1); say; exit 13</langsyntaxhighlight>
<br><br>
 
=={{header|Ring}}==
<langsyntaxhighlight lang="ring">
fp = fopen("C:\Ring\ReadMe.txt","r")
n = 0
Line 1,909 ⟶ 1,955:
end
fclose(fp)
</syntaxhighlight>
</lang>
 
=={{header|Ruby}}==
The each_line method returns an Enumerator, so no more than seven lines are read.
<langsyntaxhighlight lang="ruby"> seventh_line = open("/etc/passwd").each_line.take(7).last
</syntaxhighlight>
</lang>
 
=={{header|Run BASIC}}==
<langsyntaxhighlight lang="runbasic">fileName$ = "f:\sample.txt"
requiredLine = 7
open fileName$ for input as #f
Line 1,926 ⟶ 1,972:
close #f
print a$
end</langsyntaxhighlight>
 
=={{header|Rust}}==
<langsyntaxhighlight lang="rust">use std::fs::File;
use std::io::BufRead;
use std::io::BufReader;
Line 1,947 ⟶ 1,993:
let mut lines = content.lines();
lines.nth(line_num).expect("No line found at that position")
}</langsyntaxhighlight>
 
Alternate implementation with argument parsing. First argument is the path to the file and is required. Second argument is the line number and is optional. By default the first line will be printed.
<langsyntaxhighlight lang="rust">use std::env;
use std::fs::File;
use std::io::BufRead;
Line 1,981 ⟶ 2,027:
let line = lines.nth(line_num).expect("No line found at given position");
println!("{}", line.expect("None line"));
}</langsyntaxhighlight>
 
=={{header|Scala}}==
Line 1,987 ⟶ 2,033:
The code will throw a <tt>NoSuchElementException</tt> if the file doesn't have 7 lines.
 
<langsyntaxhighlight lang="scala">val lines = io.Source.fromFile("input.txt").getLines
val seventhLine = lines drop(6) next</langsyntaxhighlight>
===Imperative version===
Solving the task to the letter, imperative version:
 
<langsyntaxhighlight lang="scala">var lines: Iterator[String] = _
try {
lines = io.Source.fromFile("input.txt").getLines drop(6)
Line 2,004 ⟶ 2,050:
else seventhLine = lines next
}
if ("" == seventhLine) println("line is empty")</langsyntaxhighlight>
===Functional version (Recommanded)===
<langsyntaxhighlight lang="scala">val file = try Left(io.Source.fromFile("input.txt")) catch {
case exc => Right(exc.getMessage)
}
val seventhLine = (for(f <- file.left;
line <- f.getLines.toStream.drop(6).headOption.toLeft("too few lines").left) yield
if (line == "") Right("line is empty") else Left(line)).joinLeft</langsyntaxhighlight>
 
=={{header|sed}}==
To print the seventh line:
<syntaxhighlight lang ="sed">sed -n 7p</langsyntaxhighlight>
To print an error message, if no such line:
<langsyntaxhighlight lang="sed">sed '7h;$!d;x;s/^$/Error: no such line/'</langsyntaxhighlight>
That is we remember (h) the line, if any, in hold space. At the last line ($) we exchange (x) pattern space and hold space. If the hold space was empty, replace it by an error message. (Does not work with empty input, because there is no last line.)
 
Line 2,024 ⟶ 2,070:
and reads the requested line with [http://seed7.sourceforge.net/libraries/file.htm#getln%28inout_file%29 getln] afterwards:
 
<langsyntaxhighlight lang="seed7">$ include "seed7_05.s7i";
const func string: getLine (inout file: aFile, in var integer: lineNum) is func
Line 2,055 ⟶ 2,101:
end if;
end if;
end func;</langsyntaxhighlight>
 
=={{header|SenseTalk}}==
SenseTalk's chunk expressions and ability to treat a file directly as a container make this trivial. If the file has fewer than 7 lines, theLine will be empty.
<langsyntaxhighlight lang="sensetalk">put line 7 of file "example.txt" into theLine
</syntaxhighlight>
</lang>
 
=={{header|Sidef}}==
<langsyntaxhighlight lang="ruby">func getNthLine(filename, n) {
var file = File.new(filename);
file.open_r.each { |line|
Num($.) == n && return line;
}
warn "file #{file} does not have #{n} lines, only #{$.}\n";
return nil;
}
 
var line = getNthLine("/etc/passwd", 7);
printsay line if defined (line;)</langsyntaxhighlight>
 
=={{header|Smalltalk}}==
<langsyntaxhighlight lang="smalltalk">
line := (StandardFileStream oldFileNamed: 'test.txt') contents lineNumber: 7.
</syntaxhighlight>
</lang>
 
=={{header|SPL}}==
<langsyntaxhighlight lang="spl">lines = #.readlines("test.txt")
#.output("Seventh line of text:")
? #.size(lines,1)<7
Line 2,087 ⟶ 2,133:
!
#.output(lines[7])
.</langsyntaxhighlight>
 
=={{header|Stata}}==
See '''[http://www.stata.com/help.cgi?use use]''' in Stata help, to load a dataset or a part of it.
 
<langsyntaxhighlight lang="stata">* Read rows 20 to 30 from somedata.dta
. use somedata in 20/30, clear
 
* Read rows for which the variable x is positive
. use somedata if x>0, clear</langsyntaxhighlight>
 
If there are not enough lines, an error message is print. It's possible to '''[http://www.stata.com/help.cgi?capture capture]''' the error and do something else:
 
<langsyntaxhighlight lang="stata">capture use somedata in 7, clear
if _rc {
display "Too few lines"
}</langsyntaxhighlight>
 
=={{header|Tcl}}==
This code can deal with very large files with very long lines (up to 1 billion characters in a line should work fine, provided enough memory is available) and will return an empty string when the ''n''th line is empty (as an empty line is still a valid line).
<langsyntaxhighlight lang="tcl">proc getNthLineFromFile {filename n} {
set f [open $filename]
while {[incr n -1] > 0} {
Line 2,119 ⟶ 2,165:
}
 
puts [getNthLineFromFile example.txt 7]</langsyntaxhighlight>
Where it is necessary to provide very fast access to lines of text, it becomes sensible to create an index file describing the locations of the starts of lines so that the reader code can <code>seek</code> directly to the right location. This is rarely needed, but can occasionally be helpful.
 
Line 2,151 ⟶ 2,197:
 
=={{header|TUSCRIPT}}==
<langsyntaxhighlight lang="tuscript">$$ MODE TUSCRIPT
file="lines.txt"
ERROR/STOP OPEN (file,READ,-std-)
line2fetch=7</langsyntaxhighlight>
 
=={{header|TXR}}==
===From the top===
Variable "line" matches and takes eighth line of input:
<langsyntaxhighlight lang="txr">@(skip nil 7)
@line</langsyntaxhighlight>
 
===From the bottom===
Take the third line from the bottom of the file, if it exists.
<langsyntaxhighlight lang="txr">@(skip)
@line
@(skip 1 2)
@(eof)</langsyntaxhighlight>
How this works is that the first <code>skip</code> will skip enough lines until the rest of the query successfully matches the input. The rest of the query matches a line, then skips two lines, and matches on EOF. So <code>@line</code> can only match at one location: three lines up from the end of the file. If the file doesn't have at least three lines, the query fails.
 
Line 2,173 ⟶ 2,219:
{{trans|Tcl}}
{{works with|bash}}
<langsyntaxhighlight lang="bash">get_nth_line() {
local file=$1 n=$2 line
while ((n-- > 0)); do
Line 2,184 ⟶ 2,230:
}
 
get_nth_line filename 7</langsyntaxhighlight>
 
You can also use standard tools instead of built-ins:.
 
<langsyntaxhighlight lang="bash">awk NR==7 filename
sed -n 7p filename
head -n 7 filename | tail -n 1</langsyntaxhighlight>
 
=={{header|Ursa}}==
<langsyntaxhighlight lang="ursa">decl string<> lines
decl file f
f.open "filename.txt"
Line 2,205 ⟶ 2,251:
 
out "the seventh line in the file is:" endl endl console
out lines<6> endl console</langsyntaxhighlight>
 
=={{header|VBScript}}==
<syntaxhighlight lang="vb">
<lang vb>
Function read_line(filepath,n)
Set objFSO = CreateObject("Scripting.FileSystemObject")
Line 2,227 ⟶ 2,273:
 
WScript.Echo read_line("c:\temp\input.txt",7)
</syntaxhighlight>
</lang>
 
{{In}}
Line 2,247 ⟶ 2,293:
This example reads the 7th line (including newline character(s)) into text register 10.
 
<langsyntaxhighlight lang="vedit">File_Open("example.txt", BROWSE)
Goto_Line(7)
if (Cur_Line < 7) {
Line 2,257 ⟶ 2,303:
Reg_Copy(10, 1)
}
Buf_Close(NOMSG) </langsyntaxhighlight>
 
If the file does not exist, the buffer will be empty and you get "File contains too few lines" error.
Line 2,266 ⟶ 2,312:
=={{header|Wren}}==
{{trans|Kotlin}}
<langsyntaxhighlight ecmascriptlang="wren">import "io" for File
 
var lines = File.read("input.txt").replace("\r", "").split("\n")
Line 2,289 ⟶ 2,335:
Line 7
Line 8
*/</langsyntaxhighlight>
 
{{out}}
Line 2,300 ⟶ 2,346:
Usage: readline <filename.ext
 
<langsyntaxhighlight XPL0lang="xpl0">include c:\cxpl\codes; \intrinsic 'code' declarations
def MaxLen = 82; \maximum length of line that can be stored (incl CR+LF)
 
Line 2,325 ⟶ 2,371:
 
char LineN(MaxLen);
if ReadLine(7, LineN) then Text(0, LineN)</langsyntaxhighlight>
 
=={{header|zkl}}==
Many zkl sequence objects contain a readln method, some contain a seek (or equivalent) method. However, File only has readln. If, for some, reason, the nth line can't be read, an exception is thrown.
<langsyntaxhighlight lang="zkl">reg line; do(7){line=File.stdin.readln()} println(">>>",line);</langsyntaxhighlight>
Or, suck in lines and take the last one:
<langsyntaxhighlight lang="zkl">lines:=File.stdin.readln(7); println(">>>",line[-1]);</langsyntaxhighlight>
 
 
9,476

edits