Tagged Questions

2
votes
6answers
865 views

Parsing a Quickbook IIF format file

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
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
5answers
249 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
8answers
887 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 ...