0
votes
4answers
72 views
How do I parse this JSON?
I'm using a book API that returns the following
var _OLBookInfo = {
"ISBN:234234234234234": {
"bib_key": "ISBN:234234234234234",
"preview": "noview",
"preview_url": …
1
vote
5answers
67 views
Add TM to text with jQuery?
I need a way to go through all the text on my page, including links and other controls and find words that are in a certain list and add the html character entity ™ (™) to them.
I need …
0
votes
1answer
74 views
Cocoa: Parse NSString by character length
I have an NSString I'm working with, but I would like to parse it by character length. So break it apart into an NSArray, and have each object in the array be x characters from that string. So …
2
votes
4answers
111 views
How to parse a URI like this in Java
I'm trying to parse the following URI : http://translate.google.com/#zh-CN|en|你
but got this error message :
java.net.URISyntaxException: Illegal character in fragment at index 34: …
0
votes
1answer
27 views
Parsing X-amf mime type data
I have intercepted x-amf data being posted to a website from my computer by a flash application. I have the collected POST data in hex form. While some of it has translated directly to text, the rest …
2
votes
5answers
59 views
Parse user-input concerning search criteria
I'm looking for a way to parse some user-input. The input should show which searches have to be performed and how they have to be combined.
1 AND 2
(3 AND 2) OR 1
(3 AND 2) OR (1 AND 4)
( (3 OR 4) …
3
votes
2answers
113 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 = ( results === null ) ? …
1
vote
2answers
31 views
Parsing Javascript files with phpDocumentor
I've been playing with phpDocumentor recently and found it quite suitable for my needs. I'm largely working with PHP/HTML/JS/CSS codebases and would like phpDocumentor to parse my Javascript (and …
1
vote
1answer
64 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='class1 class2' :
I …
1
vote
6answers
128 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 to be built-in. …
0
votes
1answer
37 views
Code crash on iPhone Simulator but works on actual iPhone device?
This is an extremely weird problem: wondering if anybody has experienced this before. My code, an RSS parser of Flickr photos (RSS feed), works perfectly on an actual device, but allocates a ton of …
0
votes
6answers
107 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:
private bool chkID(out …
0
votes
3answers
68 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 content but it isnt …
1
vote
1answer
88 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 the complete path …
1
vote
7answers
162 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 would also …
