0
votes
6answers
65 views
Most non-confrontational delimiter for my text files?
I am saving all my notes in a log file. Each line is a note, suffixed by tags, and prefixed by a date and time marker, which currently looks like this: [12.20.09:22.22] ([date:time].
I am planning …
0
votes
2answers
28 views
Problem with Extracting NSString from TXT
I am trying to create one long string from a text file. This is the code that I currently have. I do not really understand the encoding and I tried to research but found nothing. This is the line of …
0
votes
2answers
115 views
How do I write a text file in the same format that it is read in MATLAB?
I have asked a related question in the past and I know how to read the file thanks to the help of the experts here. Now I have a new problem. I first read the data from the file like so:
fid = …
0
votes
2answers
53 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
89 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
4answers
108 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 …
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 …
1
vote
9answers
118 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 …
0
votes
1answer
288 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 …
5
votes
4answers
2k 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 …
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
186 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?
0
votes
2answers
86 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
66 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
4answers
133 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 …
