11
votes
11answers
807 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?
10
votes
17answers
819 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
…
9
votes
9answers
2k 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 …
9
votes
10answers
1k 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 …
8
votes
7answers
419 views
Are there any tricks for counting the number of lines in a text file?
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
16answers
2k views
How to monitor a text file in realtime
Hi, 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 …
7
votes
4answers
237 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
15answers
4k views
Best Free Text Editor Supporting *More Than* 4G Files?
I am looking for a text editor that will be able to load a 4+ Gigabyte file into it. Textpad doesnt work. I own a copy of it and have been to its support site, it just doesnt do it. Maybe I need …
7
votes
7answers
4k 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 …
6
votes
12answers
2k 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 …
6
votes
8answers
740 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 …
5
votes
3answers
308 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 …
5
votes
9answers
2k 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 …
5
votes
2answers
307 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 …
5
votes
8answers
945 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 …
