Top "Parsing" questions

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

SimpleDateFormat parsing date with 'Z' literal

I am trying to parse a date that looks like this: 2010-04-05T17:16:00Z This is a valid date …

java datetime parsing timezone simpledateformat
How do I parse JSON with Objective-C?

I am new to iPhone. Can anyone tell me the steps to follow to parse this data and get the …

objective-c json cocoa-touch parsing
How to parse a month name (string) to an integer for comparison in C#?

I need to be able to compare some month names I have in an array. It would be nice if …

c# parsing integer compare
How to parse a query string into a NameValueCollection in .NET

I would like to parse a string such as p1=6&p2=7&p3=8 into a NameValueCollection. What is the …

.net parsing query-string
Parse HTML in Android

I am trying to parse HTML in android from a webpage, and since the webpage it not well formed, I …

android html parsing
Finding last occurrence of substring in string, replacing that

So I have a long list of strings in the same format, and I want to find the last "." character …

python string parsing
How do I create a comma delimited string from an ArrayList?

I'm storing an ArrayList of Ids in a processing script that I want to spit out as a comma delimited …

c# vb.net parsing
Does C# have a String Tokenizer like Java's?

I'm doing simple string input parsing and I am in need of a string tokenizer. I am new to C# …

c# string parsing
Correctly Parsing JSON in Swift 3

I'm trying to fetch a JSON response and store the results in a variable. I've had versions of this code …

json swift parsing swift3 xcode8
In C#, how to check whether a string contains an integer?

I just want to know, whether a String variable contains a parsable positive integer value. I do NOT want to …

c# string parsing integer tryparse