Re: Line Numbers in Files
- To: mathgroup at smc.vnet.net
 - Subject: [mg125245] Re: Line Numbers in Files
 - From: Ulrich Arndt <ulrich.arndt at data2knowledge.de>
 - Date: Thu, 1 Mar 2012 05:37:55 -0500 (EST)
 - Delivered-to: l-mathgroup@mail-archive0.wolfram.com
 - References: <201202291224.HAA28378@smc.vnet.net>
 
this might work for you
OpenRead, Skip and Read.
Example
table = RandomInteger[1000, {1000, 2}];
Export["./test.csv", table, "CSV"]
table[[123]]
str = OpenRead["./test.csv"]
Skip[str, Record, 122]
Read[str, Record]
Ulrich
Am 29.02.2012 um 13:24 schr
ieb Don:
> I am getting a warning
> regarding one of the packages I have
> written which says the following:
> 
> Syntax::com : 
>  Warning : Comma encountered with no adjacent expression. The
>     expression will be treated as Null.  (line 2333 of
>         "AFin6`UserFuncs`XFdData1`").
> 
> Is there a way to go to the 
> a specific line number in a file?  Line 2333 above
> is impossible to locate otherwise.  
> With all  the amazing functionality in Mathematica,
> sometimes extremely simple things that
> are immediately obvious in other languages  turn out
> to be very difficult to find out how to do.  
> 
> Thank you.
> Don
>