0
votes
1answer
43 views
Selective merge of two or more data files
Dear Overflowns:
I have an executable whose input is contained in an ASCII file with format:
$ GENERAL INPUTS
$ PARAM1 = 123.456
PARAM2=456,789,101112
PARAM3(1)=123,456,789
PARAM …
0
votes
2answers
51 views
PHP and regex to find files in directories and then run regex
hi,
what's the the most efficient way to find text files in different directories and then run regex to those found files. I will run php/scripts locally.
Let's say I have D:\Scri …
1
vote
1answer
44 views
How to configure GNU Emacs to write UNIX or DOS formatted files by default?
I've had these functions in my .emacs.el file for years:
(defun dos2unix ()
"Convert a DOS formatted text buffer to UNIX format"
(interactive)
(set-buffer-file-coding-system …
3
votes
2answers
113 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?
3
votes
9answers
280 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:
…
0
votes
4answers
52 views
Preserving leading white space while reading>>writing a file line by line in bash
I am trying to loop through a directory of text files and combine them into one document. This works great, but the text files contain code snippets, and all of my formatting is ge …
3
votes
2answers
95 views
MATLAB: How do you insert a line of text at the beginning of a file?
I have a file full of ascii data. How would I append a string to the first line of the file? I cannot find that sort of functionality using fopen (it seems to only append at the e …
2
votes
4answers
103 views
Shuffle Text File Delphi Source or anything else
Hi
I have a stringlist with 10 000 entires. I have a shuffle routine, but accessing any of the items is taking a lot of time. Going thtought all 10k items takes a huge amount of t …
8
votes
7answers
412 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 …
1
vote
3answers
177 views
Searching Through a TextFile - Cocoa
How would I type up a code that searches through a text file from a given directory. I want the search word to be "password123" and if it contains that, then it will proceed onto t …
3
votes
6answers
398 views
Reading data into MATLAB from a textfile…
I have a textfile with the following structure:
1999-01-04
1,100.00
1,060.00
1,092.50
0
6,225
1,336,605
37
1999-01-05
1,122.50
1,087.50
1,122.50
0
3,250
712,175
14
...
The file …
1
vote
2answers
178 views
J2ME/Blackberry - how to read/write text file?
hi,
please give me a sample code for read/write text file in blackberry application.
2
votes
2answers
67 views
Bash - Format a Textfile - Pair every two lines
Hi,
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 f …
1
vote
1answer
168 views
How to print an array to a .txt file in Matlab?
I am just beginning to learn Matlab, so this question might be very basic:
I have a variable
a=[2.3 3.422 -6.121 9 4.55]
I want the values to be output to a .txt file like this …
0
votes
3answers
108 views
Process Large Textfiles Quickly w/ VBA
Hey Everyone,
I'm having a hardtime speeding up the processing of a very large textfile (~100 Meg or so). I've made caution to be very diligent using the redim preserve calls, an …
