Tagged Questions
The fileparsing tag has no wiki summary.
11
votes
11answers
997 views
What language is to binary, as Perl is to text?
I am looking for a scripting (or higher level programming) language (or e.g. modules for Python or similar languages) for effortlessly analyzing and manipulating binary data in files (e.g. core ...
7
votes
6answers
1k views
Generating data structures by parsing plain text files
I wrote a file parser for a game I'm writing to make it easy for myself to change various aspects of the game (things like the character/stage/collision data). For example, I might have a character ...
5
votes
4answers
453 views
Fastest way to skip lines while parsing files in Ruby?
I tried searching for this, but couldn't find much. It seems like something that's probably been asked before (many times?), so I apologize if that's the case.
I was wondering what the fastest way to ...
3
votes
6answers
110 views
Check for unique line data from file with 5 millions lines in Java
I have big file with row like ID|VALUE in one pass.
In case of ID repeat, line must be ignored.
How to effectively make this checking?
added:
ID is long(8 bytes). I need a solution that uses ...
3
votes
5answers
788 views
Simple data storing in Python
I'm looking for a simple solution using Python to store data as a flat file, such that each line is a string representation of an array that can be easily parsed.
I'm sure python has library for ...
2
votes
2answers
114 views
Is there a list of Ruby File Parsing questions/puzzles
I came across this File parsing programming challenge today and found it quite interesting. I also went for an interview about 6ish months back where also I was given a txt file which had to be ...
2
votes
2answers
509 views
Cleanest Perl parser for Makefile-like continuation lines
A perl script I'm writing needs to parse a file that has continuation lines like a Makefile. i.e. lines that begin with whitespace are part of the previous line.
I wrote the code below but don't ...
2
votes
6answers
844 views
Parsing a File Format
I'm working with Quickbook's IIF file format and I need to write a parser to read and write IIF files and I'm running into some issues reading the files.
The files are simple, they're tab ...
1
vote
2answers
31 views
Best (quickest) way to parse and modify a file
Recently I have been using alot of text files (csv) with 10-60k lines, something like this
id1,id2
id3,id1
id81,id13
...
And most of the times, I need to extract this informaton in form of an ...
1
vote
1answer
68 views
how to seperate a csv file using commas if it has null values and we need data corresponding to upper column?
My code is
BufferedReader fileReader = new BufferedReader(new FileReader(strFileName));
while ((strLine = fileReader.readLine()) != null) {
// [2011.06.28] based on ...
1
vote
1answer
237 views
How I can skip a blank line in an input file when using strtok?
I want to pass lines of a file using strtok; the values are comma separated. However, strtok also reads blank lines which only contain spaces. Isn't it suppose to return a null pointer in such a ...
1
vote
2answers
120 views
help merging perl code routines together for file processing
I need some perl help in putting these (2) processes/code to work together. I was able to get them working individually to test, but I need help bringing them together especially with using the loop ...
1
vote
4answers
401 views
File processing in java
I have a file of size 2GB which has student records in it. I need to find students based on certain attributes in each record and create a new file with results. The order of the filtered students ...
1
vote
1answer
50 views
Handling File Contents Before Writing to Disc C#
So I have decrypted a file and am left with a byte array containing this (Uni-encoded):
Content-Type: text/plain;
name="testfile.txt"
Content-Transfer-Encoding: binary
Content-Disposition: ...
1
vote
1answer
34 views
Given a trace of packets, how would you group them into flows?
I've tried it these ways so far:
1) Make a hash with the source IP/port and destination IP/port as keys. Each position in the hash is a list of packets. The hash is then saved in a file, with each ...
1
vote
3answers
432 views
Print a string that contains a certain pattern in Java
I am trying to find a regular expression within a line of a .csv file, so I can eventually save all the matches to another file, and lose all the other junk.
So a line in my file might look like:
...
1
vote
5answers
248 views
Script to Parse and Change Numbers
I am working with numbers a lot when editing a particular type of file, and it's mostly tedious work. The file has a format like this:
damagebase = 8.834
"abc_foo.odf" 3.77
"def_bar.odf" 3.77
...
1
vote
9answers
882 views
File Parsing in C#
I am building a game in Visual Studio 2008 and in order to build levels, i will have two types of files (more than that actually but these two are the only ones important to my question) i need to ...
1
vote
3answers
941 views
What is the best way to read a text file two lines at a time in Java?
BufferedReader in;
String line;
while ((line = in.readLine() != null) {
processor.doStuffWith(line);
}
This is how I would process a file line-by-line. In this case, however, I want to send two ...
0
votes
6answers
158 views
How to read a file in python which has newline and tabs into a string?
I am trying to read a file which has tabs and newline etc and the data is JSON format.
When I read it using file.read()/readlines() etc, all the newlines and tabs are also read.
I have tried ...
0
votes
0answers
195 views
Problem in parsing xml containing chinese characters
I have an xml file containing chinese characters. While parsing the file it gets caught in exception.
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder ...
0
votes
1answer
52 views
How to parse INI-like (or XML-like)files but with closing section tag?
I need to pase a text file in this format:
[section A begin]
some lines
more lines
[section 1 begin]
some lines
[section i begin]
some lines
[section i end]
more lines
[section 1 end]
more lines
...
0
votes
4answers
271 views
Perl script to update one row of a file with another
I have data files in text format which have several rows. Now there are certain rows that have wrong data which I need to update with those that have the correct data. For example,
Col1 Col2 Col3 ...
0
votes
2answers
306 views
A rotating log file in perl
I have implemented a log file that will be storing the cpu and memory state of a process after every minute.I have limited the maximum size of the file to 3MB (thats enough for my purpose).
The ...
0
votes
1answer
168 views
Generate binary file with given structure
I have a device witch use binary format style config, and i have to generate that files on-the-fly.
File structure must consist of a number of configuration settings (1 per parameter) each of the ...
0
votes
3answers
542 views
Parsing File details for Windows FTP Server
I am trying to connect to FTP server through the c# code and I am getting the list of Files and directories. And that I am saving in a ArrayList(with all attributes). I can find the FTP Server type ...
0
votes
2answers
570 views
What is the best file parsing solution for converting files?
I am looking for the best solution for custom file parsing for our enterprise import routines. I want to basically change one file format into a standard file format and have one routine that imports ...
0
votes
1answer
140 views
Please help me with this program to parse a file into an XML file
To parse an input text file and generate a) an XML file and b) an SVG (also XML) file.
The input text file (input.txt) contains the description of a number of produce distribution centers and storage ...
-1
votes
2answers
153 views
In Ruby Compare 2 lines in a log file which BOTH contain the SAME “WORD” but ONLY print out the line that was written LASTLY
here are sample lines
Apr 9 11:53:26 skip [2244]: [2244] ab-cd-ef:cc [INFO] A recoverable error has occurred
some other log lines ..
....
Apr 9 12:53:26 skip [2244]: [2244] ab-cd-ef:cc [INFO] A ...