Re: File reading and writing within for loop
- To: mathgroup at smc.vnet.net
- Subject: [mg83944] Re: File reading and writing within for loop
- From: "nilaakash at gmail.com" <nilaakash at gmail.com>
- Date: Wed, 5 Dec 2007 07:10:10 -0500 (EST)
- References: <figv8v$g0e$1@smc.vnet.net> <fijhss$ifq$1@smc.vnet.net>
On Nov 28, 4:02 pm, Jens-Peer Kuska <ku... at informatik.uni-leipzig.de> wrote: > Hi, > > filename[i_Integer] := > "in_" <> StringTake[ > ToString[PaddedForm[i, 2, NumberPadding -> {"0", "0"}]], -2] <> > ".dat" > > iolst={#, StringReplace[#, "in" -> "out"]} & /@ > Table[filename[i], {i, 0, 50}] > > doSomething[{in_String,out_String}]:=Module[{dta} > dta=Import[in]; > Export[out,dta] > ] > > and > > no loop with > > doSomething /@ iolst > > Regards > Jens > > nilaak... at gmail.com wrote: > > Hi, > > Suppose I have 50 files like following names, in_00.dat, > > in_01.dat, in_02.dat, ........ > > I want to read all the files, manipulate and save output like > > out_00.dat, out_01.dat, out_02.dat..... within a "for" loop. Could you > > please suggest how to do these ? If you have answer without "for" loop > > is also OK. > > > Thanks in advance. > > With regards. > >nilaakash Thanks everybody. Answers are very good..... With regards. nilaakash