Top "Parsing" questions

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

Which is the best library for XML parsing in java

I'm searching the java library for parsing XML (complex configuration and data files), I googled a bit but couldn't found …

java xml parsing
Get file name from URL

In Java, given a java.net.URL or a String in the form of http://www.example.com/some/path/…

java file parsing url filenames
Best way to compare 2 XML documents in Java

I'm trying to write an automated test of an application that basically translates a custom message format into an XML …

java xml testing parsing comparison
Best XML Parser for PHP

I have used the XML Parser before, and even though it worked OK, I wasn't happy with it in general, …

php xml parsing xml-parsing
Parse JSON String into a Particular Object Prototype in JavaScript

I know how to parse a JSON String and turn it into a JavaScript Object. You can use JSON.parse() …

javascript json parsing object prototype
Parse JSON in C#

I'm trying to parse some JSON data from the Google AJAX Search API. I have this URL and I'd like …

c# asp.net json parsing json.net
Parsing JSON array into java.util.List with Gson

I have a JsonObject named "mapping" with the following content: { "client": "127.0.0.1", "servers": [ "8.8.8.8", "8.8.4.4", "156.154.70.1", "156.154.71.1" ] } I know I can get the array "servers" …

java json parsing gson
Which HTML Parser is the best?

I code a lot of parsers. Up until now, I was using HtmlUnit headless browser for parsing and browser automation. …

java html parsing html-parsing web-scraping
Splitting on last delimiter in Python string?

What's the recommended Python idiom for splitting a string on the last occurrence of the delimiter in the string? example: # …

python string list parsing split
How to parse/read a YAML file into a Python object?

How to parse/read a YAML file into a Python object? For example, this YAML: Person: name: XYZ To this …

python parsing yaml