Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

71
votes
17answers
31k views

How to get line count cheaply in Python?

I need to get a line count of a large file (hundreds of thousands of lines) in python. What is the most efficient way both memory- and time-wise? At the moment I do: def file_len(fname): with ...
35
votes
14answers
71k views

How can you find and replace text in a file using the Windows command-line environment?

I am writing a batch file script using Windows command-line environment and want to change each occurrence of some text in a file (ex. "FOO") with another (ex. "BAR"). What is the simplest way to do ...
25
votes
13answers
3k views

Why should files end with a newline?

I assume everyone here is familiar with the adage that all text files should end with a newline. I've known of this "rule" for years but I've always wondered — why?
21
votes
19answers
27k views

Best Free Text Editor Supporting *More Than* 4GB Files?

I am looking for a text editor that will be able to load a 4+ Gigabyte file into it. Textpad doesn't work. I own a copy of it and have been to its support site, it just doesn't do it. Maybe I need ...
19
votes
11answers
13k views

python: how to jump to a particular line in a huge text file?

Are there any alternatives to the code below: startFromLine = 141978 # or whatever line I need to jump to urlsfile = open(filename, "rb", 0) linesCounter = 1 for line in urlsfile: if ...
16
votes
7answers
648 views

PHP library for creating/manipulating fixed-width text files

We have a web application that does time-tracking, payroll, and HR. As a result, we have to write a lot of fixed-width data files for export into other systems (state tax filings, ACH files, etc). ...
15
votes
8answers
228 views

Manipulating lines of data

I have millions of lines generated from data updated every second which look like this: 104500 4783 104501 8930 104502 21794 104503 21927 104505 5746 104506 9968 104509 5867 104510 46353 104511 7767 ...
15
votes
16answers
9k views

How to monitor a text file in realtime

for debugging purpose in a somewhat closed system, I have to output text in a file. Does anyone knows of a tool that runs on windows ( console based or not ) that detects changes to a file and ...
14
votes
10answers
5k views

C++ string parsing (python style)

I love how in python I can do something like: points = [] for line in open("data.txt"): a,b,c = map(float, line.split(',')) points += [(a,b,c)] Basically it's reading a list of lines where ...
12
votes
9answers
16k views

How do I save a String to a text file using Java?

I am a beginner Java programmer attempting to make a simple text editor. I have the text from the text field in a String variable called "text". How can I save the contents of the "text" variable to ...
11
votes
6answers
310 views

make a list out of a text file in java?

I have a text file full of numbers and I want to read the numbers into Java and then make a list that I can sort. it has been a while since I have used java and I am forgetting how to do this. the ...
11
votes
7answers
3k views

Delphi: Alternative to using Reset/ReadLn for text file reading

i want to process a text file line by line. In the olden days i loaded the file into a StringList: slFile := TStringList.Create(); slFile.LoadFromFile(filename); for i := 0 to slFile.Count-1 do ...
11
votes
5answers
343 views

I Need a Human Readable, Yet Parse-able Document Format

I'm working on one of those projects where there are a million better ways to accomplish what I need but I have no choice and I have to do it this way. Here it is: There is a web form, when the user ...
11
votes
17answers
951 views

Code Golf 4th of July Edition: Counting Top Ten Occurring Words

Given the following list of presidents do a top ten word count in the smallest program possible: INPUT FILE Washington Washington Adams Jefferson Jefferson Madison ...
11
votes
5answers
964 views

Can I transpose a file in Vim?

I know I can use AWK but I am on a Windows box. I am making a function for others that may not have AWK. I also know I can write a C program but I would love not have to create maintain and compile ...
10
votes
3answers
2k views

How to append text to an existing file in Java

I need to append text repeatedly to an existing file in Java. How do I do that?
9
votes
4answers
364 views

Editing a text file in place through C#

I have a huge text file, size > 4GB and I want to replace some text in it programmatically. I know the line number at which I have to replace the text but the problem is that I do not want to copy all ...
9
votes
2answers
9k views

J2ME/Blackberry - how to read/write text file?

please give me a sample code for read/write text file in blackberry application.
9
votes
9answers
2k views

How do I correct the character encoding of a file?

I have an ANSI encoded text file that should not have been encoded as ANSI as there were accented characters that ANSI does not support. I would rather work with UTF-8. Can the data be decoded ...
8
votes
7answers
728 views

Are there any tricks for counting the number of lines in a text file? [closed]

Say you have a text file - what's the fastest and/or most memory efficient way to determine the number of lines of text in that file? Is it simply a matter of scanning through it character by ...
8
votes
13answers
9k views

2008 Trend: Best Ultraedit Alternative Free Text Editor You Recommend

2008 has passed and there are new free software or updates for text editors that can take the place of Ultraedit-32, which is arguably the killer app of commercial text editors. We all have searched ...
8
votes
7answers
8k views

How do I split a huge text file in python

I have a huge text file (~1GB) and sadly the text editor I use won't read such a large file. However, if I can just split it into two or three parts I'll be fine, so, as an exercise I wanted to write ...
7
votes
2answers
352 views

Fastest/Cleanest way to load a text file in memory

I know similar questions have been asked before, but I couldn't find one that answers my exact question. I need a way to read a file as a String with the least code and as simple and as optimal as ...
7
votes
3answers
2k views

How to efficiently write a large text file in C#?

I am creating a method in C# which generates a text file for a Google Product Feed. The feed will contain upwards of 30,000 records and the text file currently weighs in at ~7Mb. Here's the code I am ...
7
votes
2answers
1k views

In Powershell, what's the most efficient way to split a large text file by record type?

I am using Powershell for some ETL work, reading compressed text files in and splitting them out depending on the first three characters of each line. If I were just filtering the input file, I ...
7
votes
4answers
349 views

How do text differencing applications work?

How do applications like DiffMerge detect differences in text files, and how do they determine when a line is new, and not just on a different line than the file being checked against? Is this ...
7
votes
4answers
970 views

Historical reason behind different line ending at different platforms

Why did DOS/Windows and Mac decide to use \r\n and \r for line ending instead of \n? Was it just a result of trying to be "different" from Unix? And now that Mac OS X is Unix (-like), did Apple ...
6
votes
4answers
211 views

randomizing text file read in java

I am trying to read a text file in java, basically a set of questions. With 4 choices and 1 answer. The structure looks like this: question option a option b option c option d ...
6
votes
4answers
1k views

Reading a text file in Java

I want to read a text file containing space sepearted values. Values are integers. How can I read it and put it in an array list? Here is an example of contents of the text file: 1 62 4 55 5 6 77 ...
6
votes
2answers
116 views

Can I build a resultset from a file in Java?

I don't have much experience working with resultsets, but as ResultSet is an interface, I guess I could implement it to work with a file as a backend. Is this nonsense? Is there any solution already ...
6
votes
9answers
7k views

Delete specific line from a text file?

I need to delete an exact line from a text file but I cannot for the life of me workout how to go about doing this. Any suggestions or examples would be greatly appreciated? Related Questions ...
5
votes
4answers
250 views

What is the most efficient way to parse a text file using Perl?

Although this is pretty basic, I can't find a similar question, so please link to one if you know of an existing question/solution on SO. I have a .txt file that is about 2MB and about 16,000 lines ...
5
votes
6answers
625 views

How to save string into text files in Delphi?

What is the easiest way to create and save string into .txt files?
5
votes
2answers
406 views

Delete first N characters from TextFile without creating a new file (Delphi)

I just wanna to delete from specified text file first N characters, but i'm stuck. Help me please! procedure HeadCrop(const AFileName: string; const AHowMuch: Integer); var F: TextFile; begin ...
5
votes
9answers
782 views

Processing huge text files

Problem: I've a huge raw text file (assume of 3gig), I need to go through each word in the file and find out that a word appears how many times in the file. My Proposed Solution: Split the huge file ...
5
votes
3answers
1k views

Java Text File Encoding

I have a text file and it can be ANSI (with ISO-8859-2 charset), UTF-8, UCS-2 Big or Little Endian. Is there any way to detect the encoding of the file to read it properly? Or is it possible to read ...
5
votes
6answers
4k views

Comparing text files w/ Junit

I am comparing text files in junit using: public static void assertReaders(BufferedReader expected, BufferedReader actual) throws IOException { String line; while ((line = ...
5
votes
8answers
3k views

What's the best way of doing dos2unix on a 500k line file, in Windows?

Question says it all, I've got a 500,000 line file that gets generated as part of an automated build process on a Windows box and it's riddled with ^M's. When it goes out the door it needs to *nix ...
4
votes
1answer
170 views

How can we efficiently read only integers from text file in C#

In C++, we can define a custom locale that enables stream object to ignore non-digits in the file, and reads only the integers. Can we do something similar? How can we efficiently read only integers ...
4
votes
4answers
251 views

what is the efficent way to process larges text files?

I have two files: 1- with 1400000 line or record --- 14 MB 2- with 16000000 -- 170 MB I want to find if each record or line in file 1 is also in file 2 or not I develop a java app that do the ...
4
votes
8answers
490 views

C# Removing seperator characters from quoted strings

I'm writing a program that has to remove seperator characters from quoted strings in text files. For example: "Hello, my name is world" Has to be: "Hello my name is world" This sounds quite ...
4
votes
3answers
2k views

How do I index and search text files in Lucene 3.0.2?

I am newbie in Lucene, and I'm having some problems creating simple code to query a text file collection. I tried this example, but is incompatible with the new version of Lucene. UDPATE: This is my ...
4
votes
2answers
296 views

Splitting gzipped logfiles without storing the ungzipped splits on disk

I have a recurring task of splitting a set of large (about 1-2 GiB each) gzipped Apache logfiles into several parts (say chunks of 500K lines). The final files should be gzipped again to limit the ...
4
votes
4answers
273 views

How can I compare files in a JUnit test case?

I want to implement JUnit on a small project I'm working on because I want to learn a little bit about it. The tutorials that I read all make reference to methods that have a particular output. In ...
4
votes
4answers
265 views

Read from an existing text file(.txt) in sql server 2005

My gps device writes its data to a text file in my server. Now i want sql server to read it and store values in a table. How to get started with this kind of a scenario? Any suggestion. EDIT: ...
4
votes
3answers
151 views

Which would be better? Storing/access data in a local text file, or in a database?

Basically, I'm still working on a puzzle-related website (micro-site really), and I'm making a tool that lets you input a word pattern (e.g. "r??n") and get all the matching words (in this case: rain, ...
4
votes
4answers
4k views

saving the contents of a listbox to a text file c#

How can I save the contents of my listbox to a text file using a save file dialog? I also want to add additional information to the text file and also add a message box saying saved when it's been ...
4
votes
2answers
678 views

Bash - Format a Textfile - Pair every two lines

With a simple bash script i generate a text file with many entrys like this: 192.168.1.1 hostname1 192.168.1.2 hostname2 192.168.1.3 hostname3 Now i want to reformat this file, that it looks like ...
4
votes
5answers
30k views

vba - Read lines from text file - Exclude top two lines?

I've got this macro code in Microsoft Office Word 2003 which reads the lines of a text file. The lines each represent a string value that I need to use later in the code. However, the first two lines ...
4
votes
1answer
192 views

How can I write the same text to two separate file handles using Perl?

I need to output the same text to two different files (it is a application requirement, which I am testing). Now, I do not wish to open two file handles, write two lines to each, then close them a ...

1 2 3 4 5 7