0
votes
3answers
45 views
Parsing this XML feed using PHP
I have an xml feed at this url
Now im trying parse the content, particularly the content in <REDIRECT></REDIRECT> tags.
I use the following code to try and parse the c …
0
votes
1answer
46 views
nokogiri multiple css classes
How is it possible to select an html element that have two classes.
For example, hot to select the element p bellow in an html document (given that it has two css classes) class='c …
0
votes
1answer
19 views
Is there a way to parse html with lxml, but manipulate it with minidom?
I have an application where I've been using html5lib to liberally parse html. I use the minidom interface, because I need a real DOM API and ElementTree is not appropriate for what …
3
votes
2answers
106 views
I found this “[\\?&]v=([^&#]*)” on the internet can someone explain it to me.
I found a method on the internet that can retrieve the Id of a youtube video from the url.
this is it.
var vid;
var results;
results = url.match("[\\?&]v=([^&#]*)");
vid = ( res …
0
votes
6answers
77 views
Parse CSV string into Array of Integers
I have a text box field inputs 123,145,125 I to separate this field into an array of integers. And validate this field true or false if everything is parsed right.
CODE:
privat …
0
votes
2answers
21 views
How to pass a .plist file with php?
Can i pass a plist file with php and kind of get it into an array, like the $_POST[''] so i could call $_POST['body'] and get the string that has the <key> body ?
0
votes
1answer
22 views
parse quoted string into tokens in javascript
I need to parse expression like
'a' 'b' 'cd ef'
three tokens
how can this be done in javascript?par
1
vote
7answers
147 views
Programmatically parse and edit C++ Source Files
Hi,
I want to able programmatically parse and edit C++ source files.
I need to be able to change/add code in certain sections of code (i.e. in functions, class blocks, etc). I wo …
1
vote
3answers
41 views
Parse players currently in lobby
I'm attempting to write a bash script to parse out the following log file and give me a list of CURRENT players in the room (so ignoring players that left, but including players th …
1
vote
1answer
66 views
Is it possible to get the size of a Flash video [YouTube] using JavaScript?
I would like to know the size of the movie I am watching on any video site [ if not possible on all video sites, then at least on YouTube ]. So is it possible, say I will specify t …
0
votes
4answers
32 views
parse log file - using java and plot graph
I am writing a log analyzer program which is supposed to plot a graph on search string against time after parsing log file(s). I am currently clueless about how would I parse and s …
0
votes
3answers
48 views
How do I strip all the html out of database records, than create an xml file?
Hello!
Im trying to figure out a way to strip out all html tags from records in a database, then create xml?
Any ideas?
Built on asp.net 2.0 with sql server
0
votes
3answers
37 views
Search for base64 encoded content in StreamReader?
I need to parse a NDR file from an SMTP badmail folder from IIS. Attached to the NDR is the content which is base64 encoded. That is what I need to get to. I was hoping that, using …
0
votes
5answers
116 views
Search for a string in a text file and parse that line (Linux, C)
This is "how to parse a config file" question.
Basically i have a text file (/etc/myconfig) that has all kind of settings. I need to read that file and search for the string:
want …
0
votes
5answers
63 views
Converting an XML-document to a dictionary
I do not need to edit any XML-file or anything, this is only for reading and parsing.
I want to be able to handle the XML-document as a dictionary, like: username = doc["username …
