Jump to content

Insert text before each line in txt file


mnybud

Recommended Posts

I have a very large text file, nearly 1 gig. I need to add some text before each line in the file.

So for example I have

 

1

2

3

4

 

and I simply want

 

a1

a2

a3

a4

 

I can do this in excel but since the file is so big it will have to be split into a million pieces in order to load and will take me forever.

Is there a way to do this in php easily?

 

your best bet is to read in chunks

 

http://php.net/fread

 

then use str_replace( "\n", "\na" ); on the chunk

 

then append the chunk to a new file.

 

This will take a LONG time to execute, so use set_time_limit( 0 ), and possibly output flushing to give you an idea of the progress

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.