5
votes
5answers
123 views
Is There A Fast GetToken Routine For Delphi?
In my program, I process millions of strings that have a special character, e.g. "|" to separate tokens within each string. I have a function to return the n'th token, and this is …
1
vote
5answers
40 views
how to create a parser for search queries
for example i'd need to create something like google search query parser to parse such expressions as:
flying hiking or swiming
-"walking in boots " author:hamish author:reid …
3
votes
3answers
36 views
PHP DomDocument XML Load with Broken XML Data
Hi,
How do you deal with broken data in XML files? For example, if I had
<text>Some &improper; text here.</text>
I'm trying to do:
$doc = new DOMDocument();
…
-1
votes
1answer
51 views
parse XML string .net
I have the following XML string that I need to parse(break). Any body know what is the code to be used? I can provide my code if need it.
<?xml version='1.0' encoding='ISO-8859 …
0
votes
6answers
67 views
Find Text Between 2 Quotes with jQuery
ok, so I have this small block of text:
function onfocus(event) {
if ($(this).val() == "Some Arbitrary Text") {$(this).val("");}
}
Using jQuery or JavaScript, I would like to …
0
votes
1answer
29 views
BioPython: extracting sequence IDs from a Blast output file
Hi,
I have a BLAST output file in XML format. It is 22 query sequences with 50 hits reported from each sequence. And I want to extract all the 50x22 hits. This is the code I curre …
1
vote
5answers
63 views
Parsing data (PHP, MySQL)
Hi guys!
I have a file with data in the following format:
<user>
<fname>Anthony</fname>
<lname>Smith</lname>
<accid>3874918</ac …
1
vote
3answers
46 views
Text processing / comparison engine
Hi, I'm looking to compare two documents to determine what percentage of their text matches based on keywords.
To do this I could easily chop them into a set word of sanitised wo …
0
votes
3answers
83 views
Parse HTML Page For Links With Regex Using Perl [closed]
Possible Duplicate:
How can I remove external links from HTML using Perl?
Alright, i'm working on a job for a client right now who just switched up his language choice to …
0
votes
3answers
34 views
php parse urls with multiple variables with get request
I'm sending a php script multiple urls (about 15) at once, all containing about 5 url variables. In my script, I'm parsing the chunk of urls into individual ones by splitting them …
2
votes
7answers
74 views
Coldfusion - XML formatting a string returned from API call
We call an API that returns a string of XML-formatted data. We'd like to convert this string into a ColdFusion XML object, via XMLParse(). A problem occurs when special characters …
4
votes
5answers
152 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 …
1
vote
2answers
44 views
C# Parsing Excel custom cell format
I am parsing an Excel file and am having difficulty reading in the value of a cell that has a custom cell format of dd mmm yy. The value in the cell in question is 29 Oct 09 (cell …
1
vote
1answer
35 views
[VBA ?] Rich text format (with formatting tags) in Excel to unformatted text
Hello,
I have approx. 12000 cells in excel containing RTF (including formatting tags). I need to parse them to get to the unformatted text.
This is the example of one of the cell …
2
votes
6answers
158 views
Python parsing bracketed blocks
What would be the best way in python to parse out chunks of text contained in matching brackets?
"{ { a } { b } { { { c } } } }"
should initially return:
[ "{ a } { b } { { { c …
