-5
votes
4answers
88 views
How can I extract content from an HTML file using Java or Perl?
Possible duplicate of:
http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser
http://stackoverflow.com/questions/238036/ja …
1
vote
6answers
45 views
Will ANTLR Help? Different Suggestion?
Before I dive into ANTLR (because it is apparently not for the faint of heart), I just want to make sure I have made the right decision regarding its usage.
I want to create a gra …
0
votes
8answers
87 views
Non-browser emulation of JavaScript - is it possible?
I have a new project I am working on that involves fetching a webpage, (using PHP and cURL) parsing the HTML and javascript out of it and then handling the data in the results.
B …
2
votes
1answer
21 views
parse query string with urllib in Python 2.4
Using Python2.4.5 (don't ask!) I want to parse a query string and get a dict in return. Do I have to do it "manually" like follows?
>>> qs = 'first=1&second=4&thi …
0
votes
3answers
39 views
Parsing every element of an array as an integer
I have a string which I need to split into an array and then perform mathematical functions on each element of the array.
Currently I am doing something like this. (Actually, I am …
0
votes
2answers
62 views
parsing problem
hi every one i need to parse the following one such that it wil store each line in an array
avoiding emptyline asthere r two new lines after [2K
RTRV-ALM-EQPT::ALL:RA01;
[2K
…
2
votes
2answers
37 views
unit testing file parsing routines?
Hello,
I am struggling a bit with how I can unit test parsing a file... Let's say I have a file with 25 columns that could be anywhere from 20-1000 records long... How do I write …
1
vote
4answers
45 views
Find following tag with pyparsing
I'm using pyparsing to parse HTML. I'm grabbing all embed tags, but in some cases there's an a tag directly following that I also want to grab if it's available.
example:
import …
1
vote
3answers
58 views
How to create class at runtime from file
Is it possible to create a class at runtime from a file without parsing it?
If not what would be the best approach to retrieve class properties, constructors and methods from a fi …
0
votes
2answers
24 views
Is it possible to stack Yacc grammar rule code?
Lets say I need to run some initialization code everytime I match a rule how can I reduce the redundancy?
rule : TOKEN1 { init(); token1Code(); }
| TOKEN2 { init(); token2Cod …
0
votes
3answers
62 views
Converting string containing localtime into UTC in C
I have a string containing a local date/time and I need to convert it to a time_t value (in UTC) - I've been trying this:
char* date = "2009/09/01/00";
struct tm cal = {0, 0, 0, 0 …
0
votes
3answers
93 views
[C] Syntactic errors
I'm writing code for the exercise 1-24, K&R2, which asks to write a basic syntactic debugger.
I made a parser with states normal, dquote, squote etc...
So I'm wondering if a …
1
vote
2answers
74 views
How to resolve this Shift/Reduce conflict in YACC
I have a grammar like this:
"Match one or more rule1 where rule1 is one or more rule2, where rule2 is one or more rule3, etc. etc. each seperated by newlines". Look at the followi …
1
vote
3answers
102 views
Approaching Text Parsing in Scala
I'm making an application that will parse commands in Scala. An example of a command would be:
todo get milk for friday
So the plan is to have a pretty smart parser break the li …
1
vote
6answers
165 views
How can I parse the following text file?
Hi,
I'm pretty new to c#. Can somebody please give me the right direction on how can I parse the following text file?
The program I am trying to implement will do the following:
…
