Top "Parsing" questions

Parsing refers to breaking an artifact into its constituent elements and capturing the relationship between those elements.

Retrieving parameters from a URL

Given a URL like the following, how can I parse the value of the query parameters? For example, in this …

python django parsing url
Parsing query strings on Android

Java EE has ServletRequest.getParameterValues(). On non-EE platforms, URL.getQuery() simply returns a string. What's the normal way to properly …

java android parsing url
Uncaught SyntaxError: Unexpected end of JSON input at JSON.parse (<anonymous>)

I need some help with this error : Uncaught SyntaxError: Unexpected end of JSON input at JSON.parse () at Object.success (…

javascript json parsing stringify oracle-jet
How do I export html table data as .csv file?

I have a table of data in an html table on a website and need to know how to export …

html parsing csv export export-to-csv
Parsing JSON using Json.net

I'm trying to parse some JSON using the JSon.Net library. The documentation seems a little sparse and I'm confused …

c# parsing serialization json.net
Sending and Parsing JSON Objects in Android

I would like to send messages in the form of JSON objects to a server and parse the JSON response …

android json parsing
Parse JSON from HttpURLConnection object

I am doing basic http auth with the HttpURLConnection object in Java. URL urlUse = new URL(url); HttpURLConnection conn = null; …

java html json parsing httpurlconnection
Best way to parse RSS/Atom feeds with PHP

I'm currently using Magpie RSS but it sometimes falls over when the RSS or Atom feed isn't well formed. Are …

php parsing rss atom-feed
Creating a simple configuration file and parser in C++

I am trying to create a simple configuration file that looks like this url = http://mysite.com file = main.exe …

c++ file parsing configuration settings
convert String to DateTime

I need to parse following String into a DateTime Object: 30/Nov/2009:16:29:30 +0100 Is there an easy way to do this? PS: …

ruby date time parsing