1
vote
2answers
49 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
13 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 …
0
votes
4answers
148 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 - …
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
1answer
19 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
28 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 …
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?
2
votes
5answers
146 views
Extract Integer Part in String
What is the best way to extract the integer part of a string like
Hello123
How do you get the 123 part. You can sort of hack it using Java's Scanner, is there a better way?
1
vote
3answers
123 views
pulling webpages from an adult site — how to get past the site agreement?
I'm trying to parse a bunch of webpages from an adult website using Ruby:
require 'hpricot'
require 'open-uri'
doc = Hpricot(open('random page on an adult website'))
However, what I end up …
2
votes
1answer
34 views
Losing whitespace around escaped symbols in CDATA using Expat XML parser in C++
I'm using XML to send project information between applications. One of the pieces of information is the project description. So I have:
<ProjectDescription>Test & spaces …
0
votes
4answers
87 views
How to filter data from a file using Python?
Hi all,
I'm trying to filter certain data from an HTML file. For example, the HTML file is as follows:
<tr><td valign="top"><img src="/icons/unknown.gif" alt="[ …
