Tagged Questions
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 ...
2
votes
6answers
845 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
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
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 ...