0
votes
2answers
51 views
With PHP how do you output a textfile into a table along with links.
I have this text file:
Dec 04 20:15 Naruto 123
Dec 04 17:42 Naruto 98
Dec 04 16:19 D Gray Man 001
Dec 04 16:05 Bleach 128
Dec 04 12:13 50 x 50 44
I need to output the contents into a table with the …
1
vote
7answers
83 views
C# resuable library to treat a text file like a database table?
I would like to store values in a text file as comma or tab seperated values (it doesn't matter).
I am looking for a reusable library that can manipulate this data in this text file, as if it were a …
1
vote
9answers
98 views
Remove first line in text file without allocating memory for entire text file
Hey all,
I have a very large text file and all I need to do is remove one single line from the top of the file. Ideally, it would be done in PHP, but any unix command would work fine. I'm thinking I …
1
vote
4answers
91 views
How to write trace output to a text file without a web server in AS3
I have an application that writes traces with a timestamp when certain items are clicked or accessed. I need to write these to a text log file so that they can be accessed remotely.. The device the …
4
votes
9answers
312 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 …
0
votes
1answer
52 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
PARAM4 =
…
3
votes
2answers
170 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?
2
votes
2answers
251 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 end and nothing …
8
votes
7answers
422 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 …
0
votes
4answers
120 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 getting collapsed to …
2
votes
4answers
142 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 time.
I want to save …
0
votes
2answers
73 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:\Script\ where i want to …
1
vote
1answer
62 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 'undecided-unix …
0
votes
1answer
269 views
Read a txt file containing a matrix of numbers separated by spaces and lines into an array
I've been trying to read a txt file containing a formatted matrix (9x9) into an int array. The txt file is selected by the user using NSOpenPanel.
An example txt file:
2 7 9 1 6 2 1 1 1
9 1 3 3 4 …
2
votes
6answers
497 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 contains repeated …
