Tagged Questions

0
votes
2answers
70 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
111 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
vote
5answers
171 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 …
2
votes
2answers
201 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 …
7
votes
11answers
555 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 …
1
vote
9answers
353 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 …
2
votes
6answers
328 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 …
7
votes
6answers
442 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 …
1
vote
3answers
513 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 …
2
votes
6answers
437 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 …