2
votes
9answers
148 views
algorithm for list identification and parsing
I have data which in theory is a list, but historically has been input by the user as a free form text field. Now I need to separate each item of the list so that each element can …
0
votes
3answers
48 views
split select statement with regular expression
hello,
i need to split any mysql select statement in its main parts: SELECT, FROM, ALL THE JOINS(if there are any), WHERE(if it exists),GROUP BY(if it exists), HAVING(if it exists) …
1
vote
1answer
22 views
Randomize external RSS feed order in PHP
I'm using a third-party AJAX slideshow for a website that takes an RSS feed as its picture source. I would like to randomize the order of the pictures, but that's not a feature of …
0
votes
4answers
21 views
how to format atom date time
Hi
i'm getting dates from feed in this format
2009-11-04T19:55:41Z
i'm trying to format it using the date() function in PHP but i get an error saying:
date() expects paramet …
1
vote
4answers
86 views
Are there .NET Framework methods to parse an email (MIME)?
Is there a class or set of functions built into the .NET Framework (3.5+) to parse raw emails (MIME documents)?
I am not looking for anything fancy or a separate library, it needs …
1
vote
3answers
35 views
parse.unquote_plus TypeError
I'm trying to format a file so that it can be inserted into a database, the file is originally compressed and arround 1.3MB big.
Each line looks something like this:
398,%7EAno …
0
votes
5answers
102 views
Stream and c++ - parsing file
Hello, I did it before... But I forgot.
I have a file with some data:
0.5 0.6 0.7
1.2 1.5
How can I read this in c++? I did it with stream... something like:
float var = 0 …
0
votes
4answers
100 views
Python name grabber
if I have a string in the format of
(static string) name (different static string ) message (last static string)
(static string) name (different static string ) message (last sta …
1
vote
1answer
64 views
Parsing JSON Object Array
Hello All,
I am very new to using Jquery and Json. I have a servlet that is returning an array of JSONObject's ( basically a JSONArray object ).
I am trying to parse this array w …
0
votes
4answers
49 views
Preserving leading white space while reading>>writing a file line by line in bash
I am trying to loop through a directory of text files and combine them into one document. This works great, but the text files contain code snippets, and all of my formatting is ge …
0
votes
3answers
62 views
Iterating through/Parsing JSON Object via JavaScript
Hello,
I'm having a problem with jQuery/Ajax/JSON. I'm using a jQuery ajax post like so...
$.ajax({
type: "POST",
dataType: "json",
url: "someurl.com",
data: "cmd="+escape …
2
votes
4answers
95 views
Tell SAX Parser to ignore invalid characters?
SAX keeps on dying on the following exception:
Invalid byte 2 of 3-byte UTF-8 sequence
The problem is its mostly correctly UTF-8 encoded but there are a few errors in it. We can …
1
vote
1answer
38 views
How to handle a tokenize error with unterminated multiline comments (python 2.6)
The following sample code:
import token, tokenize, StringIO
def generate_tokens(src):
rawstr = StringIO.StringIO(unicode(src))
tokens = tokenize.generate_tokens(rawstr.re …
3
votes
1answer
40 views
a class for a parser.. in the same way that class Regex is for regular expressions
I find the class Regex in .net extremely useful (for both matching and matching/replacing).
There are some patterns that cannot be specified in regular expressions, but rather need …
0
votes
2answers
71 views
Parsing a .txt or html file into a string in the iPhone SDK
So, what I'm trying to do, is take a .txt or html file, being able to search through it, and grab a piece of text from file, place it into a string and finally adding it into a tex …
