1
vote
3answers
32 views
Parsing Peculiar Newlines
I'm sure this is something very simple that I'm screwing up, but here goes:
I'm trying to parse a log file that is generally formatted in UNICODE (and I'll freely admit that I d …
0
votes
0answers
11 views
Parsing with DCGs in Scheme (without Prolog)?
Lots of Prolog-in-Scheme implementations are out there. E.g. Kanren, Schelog.
Apparently in "Paradigms of AI Programming" Norvig implements Prolog-to-Lisp compiler in Lisp in orde …
1
vote
4answers
83 views
How can I catch everything after the underscore in a filepath with JavaScript?
How can I catch everything after the last underscore in a filename?
ex: 24235235adasd_4.jpg into 4.jpg
Thanks again!
0
votes
2answers
36 views
pattern matching an array, not their elements per se
Hi
I'm looking for a way of pattern matching the "geometry" of an array, the order in which the elements appear, not the contents of each element directly.
Let me outline what I …
0
votes
3answers
25 views
J2ME String to XML doc
Hi
I'm currently calling a web service from my J2ME app and receiving the xml document as a string object.
is it possible to convert the string object to a document type?
Can I …
8
votes
8answers
147 views
Ideas for Natural Language Processing project?
I have to do a final project for my computational linguistics class. We've been using OCaml the entire time, but I also have familiarity with Java. We've studied morphology, FSMs, …
1
vote
5answers
223 views
Possible to parse a HTML document and build a DOM tree(java)
Is it possible and what tools could be used to parse an html document as a string or from a file and then to construct a DOM tree so that a developer can walk the tree through some …
4
votes
6answers
238 views
Parsing query strings in Java
J2EE has ServletRequest.getParameterValues().
On non-EE platforms, URL.getQuery() simply returns a string.
What's the normal way to properly parse the query string in a URL when …
0
votes
1answer
273 views
TouchXML unable to parse YQL result XML on a iPhone
Problem 1:
Has anyone worked with TouchXML, I am facing problem parcing rssfeed that has characters like & or even &
The parser takes the url as input and doesn’t seem to p …
0
votes
3answers
120 views
C++ Parsing a line out of a large file
I have read an entire file into a string from a memory mapped file Win API
CreateFile( "WarandPeace.txt", GENERIC_READ, FILE_SHARE_READ, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, …
1
vote
2answers
28 views
coercive parsing attack
when studying about xml vulnerabilities , i came accross coercive parsing attack.
can anybody say what exactly is Coercive parsing attack(in SOA applications). How does the attack …
1
vote
3answers
104 views
Java Math(s) Parsing API
Following on from my previous question, I was wondering if anyone knew of any free (as in beer, as in freedom would be nice but not essential) math(s) parsing libraries for Java. I …
1
vote
2answers
51 views
using the TSqlParser
I'm attempting to parse SQL using the TSql100Parser provided by microsoft. Right now I'm having a little trouble using it the way it seems to be intended to be used. Also, the lack …
1
vote
3answers
73 views
Parsing an Object into a String
Hi there I am looking to parse an Object I have into a String so that I can enter it's value into a textfield. Here is a little snippet.
TFname is the name of the textfield
Objec …
5
votes
8answers
234 views
What is parsing?
Parsing is something i come accross alot in development, but as a junior its one of those things i assume i will get the hang of at some point, when its needed. In my current proje …
