The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
2answers
143 views

Problems parsing a file in C

I'm trying to parse a set of files that all have the same format. Here's an example instance: NAME: br17 TYPE: ATSP COMMENT: 17 city problem (Repetto) DIMENSION: 17 EDGE_WEIGHT_TYPE: EXPLICIT ...
0
votes
4answers
72 views

Parsing text file separated by comma

I am developing an application to read a text file and plot a graph. the text file will be something like #Pattern Name Item1, Item2, Item3, gx1, gy1, gz1 115, 80, 64, 30.752, 27.587, 15.806 195, ...
0
votes
3answers
51 views

Parse any file type as XML

I have the following code snippet in a Gradle script (the syntax is a combination of Groovy/Java): File file = new File(filename) // Filename is being read from console def content = file.getText() ...
2
votes
2answers
35 views

In Ruby- Parsing Directory and reading first row of the file

Below is the piece of code that is supposed read the directory and for each file entry prints the first row of the file. The issue is x is not visible so file is not being parsed. ...
0
votes
0answers
23 views

Need Help processing files in php with special chars

I am building an online language learning site with directories of thousands of files named as such: foriegn_word - english_translation.jpg foriegn_word - english_translation.mp3 foriegn_word - ...
0
votes
2answers
53 views

Cache data for post requests on server startup

I have a large CSV file which needs to be parsed in order to make post requests to a REST API.The post request body is a json string. The first line in the file has keys and following lines are the ...
0
votes
5answers
233 views

String Parse C# to array/SQL database

I have a bunch of files in the format following like this: 20130201:14:58:47 I search: xx ('ID'= (xxxxxxxx) ) 20130201:14:58:56 I request: search | For ID | Search 20130201:14:58:56 I search: xx ...
1
vote
2answers
54 views

How to parse file with PHP

I have this file, I cant figure out how to parse this file. type = 10 version = 1.2 PART { part = foobie partName = foobie EVENTS { MakeReference { active ...
0
votes
1answer
82 views

How do I extend a perl source file header parser to keeps existing information?

I have an existing project that requires license headers to be used at the beginning of every source file. The problem is that the license header is not static: ...
-2
votes
1answer
69 views

Parsing a specific file using python [closed]

I have a 300 meg file that contains lines like these [0] ppt: (non-cluster) 4294967295 1 1.9.1.25 timestamp: 1355333137 states: 680 [138(average 2752 0)][139(average 2802 0)][2253(average 2008 ...
1
vote
3answers
333 views

Bash- parse file into arrays

i have this file Seq1 10 1 5 10 2 6 10 3 9 Seq2 15 2 7 15 4 9 15 8 12 i want to have arrays for each Seqs (Seq1, Seq2) like this: 2ndColumn=(1,2,3) 3rdColumn=(5,6,9) i wrote this but it does ...
0
votes
2answers
301 views

How to take in digits 0-255 from a file with no delimeters

I have a plaintext file that has only numerical digits in it (no spaces, commas, newlines, etc.) which contains n digits which range from 0 to 255. I want to take it in and store these values in an ...
1
vote
0answers
93 views

Docx content and formatting extraction in python

I am trying to parse a docx folder and take specific elements base on wether or not a certain word is bolded. If this is the text in the document: Foo: Hello Boo: Blah Blah •Blah •Blah Choo: ...
0
votes
2answers
164 views

IOError when trying to open existing files

I have a small issue with a python program that I wrote to extract some information from a special text file. What I'm trying to do is merge together ~500 lists and then use the resulting merged ...
1
vote
4answers
222 views

Most efficient way to parse a file in Python

I want to know what the most efficient way is to parse a text file. For example, lets say I have the following text file: Number of connections server is: 1 Server status is: ACTIVE ...
2
votes
2answers
117 views

C: File parsing without losing white space

I am parsing a file for particular keyword matching by C program, here is my sample code... #include <stdio.h> int main() { FILE *infile = fopen("Somefile.txt", "r"); char ...
0
votes
0answers
23 views

On malformed files

Suppose you start looking at an XML file, which you parse and confirm that it in fact an XML file. Life is good. Then someone removes a > somewhere in a file, which effectively makes the file a ...
0
votes
2answers
33 views

Which method to use in searching for a line in a file

I have a file with path names to files: /my/path1 /my/path11 /my/path12 /my/path13 The file structure is that it has individual paths in each line. All I want to do is search for the existence of a ...
1
vote
2answers
71 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
504 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 ...
4
votes
6answers
1k 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 ...
3
votes
6answers
174 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 ...
4
votes
2answers
242 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 ...
0
votes
0answers
547 views

Cannot parse XML containing Chinese characters

I have an XML file containing Chinese characters. While parsing the file it, an exception is raised. DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = ...
1
vote
1answer
899 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 ...
0
votes
1answer
135 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 ...
6
votes
4answers
2k 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 ...
1
vote
2answers
146 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 ...
0
votes
4answers
561 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
743 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
555 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 ...
1
vote
4answers
887 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
59 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
votes
2answers
196 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 ...
1
vote
1answer
46 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
924 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: ...
0
votes
3answers
922 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
795 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
155 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
275 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
656 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 ...
12
votes
11answers
1k 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
8answers
973 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 ...
3
votes
5answers
1k 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
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 ...
1
vote
3answers
2k 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
1k 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 ...