0
votes
3answers
46 views
How to turn type-labeled tokens into a parse-tree?
So I'm writing a programming language in C++. I've written pretty much all of it except for one little bit where I need to turn my tokens into a parse tree.
The tokens are already type labeled and …
0
votes
6answers
86 views
How do I extract and parse quoted strings in Perl?
Hello.
Good day.
My text file content below. tmp.txt (a very big size file)
constant fixup private AlarmFileName = <A "C:\\TMP\\ALARM.LOG">
constant fixup ConfigAlarms = <U1 0> …
0
votes
4answers
65 views
Complex line parse - need help.
Could you help me to correct my parse code.
constant fixup privite ConfigAlarms = <U1 0> /* comment here*/
Slip of my code below,
I don't know how to get the value of U1 and 0 and …
1
vote
2answers
51 views
Use PHP to parse a confirmation email?
I'm integrating my website with a third party system. Here's the workflow between my website and the third party system:
1) From my website, I use PHP to automate upload of a CSV file to the third …
0
votes
0answers
22 views
JOOMLA + XML Parsing Error at 1:1496. Error 4: not well-formed (invalid token)
I am receiving the error: "XML Parsing Error at 1:1496. Error 4: not well-formed (invalid token)" on all pages of a Joomla install. Not sure exactly when the error started but it was working before. I …
1
vote
0answers
26 views
Parsing a blackberry .ipd file
I recently lost my Blackberry. When I discovered it was gone very shortly afterwards and called it, the sim card had already been removed. I ain't seeing that Blackberry again. Ok. I am out $300, but …
2
votes
2answers
38 views
python - urrlib2 request https site - getting 400 error
Hi...
using the following snip of code to access a url with a post.
i can get it using wget and the following:
wget --post-data 'p_calling_proc=bwckschd.p_disp_dyn_sched&p_term=201010' …
0
votes
5answers
166 views
Basics of Haskell compiling
I'm working on the 2nd Euler's problem, but for now I'm just trying to define the Fibonacci sequence. Currently, I have my Fib function defined as
Fib 0 = 0
Fib 1 = 1
Fib x = Fib (x - 1) + Fib (x - …
0
votes
1answer
21 views
Parsing XML via jQuery, nested loops
I am using jQuery to parse XML on my page using $.ajax(). My code block is below and I can get this working to display say each result on the XML file, but I am having trouble because each section can …
0
votes
1answer
28 views
Capture multiple lines using Regular Expression (.Net)
I am trying to write a regular expression that can parse the text between < p >< /p > tags. There will be up to 3 lines of text in a row. I thought this might be possible using the (?= search …
0
votes
4answers
71 views
What is the processes to parse an interpreted programming language?
I would like to know how is the best way to create the syntax tree.
0
votes
2answers
23 views
How to query full page from a phpbb forum?
I want to write an app that parse particular threas on a phpbb forum. So if a thread has 200 pages with 10 posts (that doesn't give you the ability to adjust the post count per page), and has an …
4
votes
3answers
77 views
How to Convert English to Cron?
I did some searching but haven't landed anything that looks useful yet but I am wondering if anyone knows of something (tool,lib etc) that can parse English phrases and translate them into a cron …
0
votes
1answer
24 views
how to allow a user to upload a spreadsheet in asp.net mvc
i want a user to have file picker and then choose a spreadsheet which will then be parsed by a controller action. are there any examples of how to do this?
0
votes
1answer
32 views
Loading an hpricot element with a chunk of html
is there a way to load a chunk of html into an Hpricot::Doc object?
I am trying to parse various chunks of html within custom tags from a page.
so if I have:
<foo>
<b>here is some …
