0
votes
2answers
37 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
74 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
90 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
82 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 …
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 =
…
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
2answers
67 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 …
0
votes
4answers
116 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
2answers
229 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 …
4
votes
9answers
309 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 …
3
votes
2answers
165 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
4answers
138 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 …
8
votes
7answers
420 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 …
1
vote
3answers
190 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 the next step, if not …
1
vote
2answers
291 views
J2ME/Blackberry - how to read/write text file?
hi,
please give me a sample code for read/write text file in blackberry application.
