<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/parse</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 23 May 2013 15:10:22 GMT</pubDate>
<item>
<title>(PHP) Parsing XML File with PHP - apphp-snippets</title>
<link>http://snipplr.com/view/70081/parsing-xml-file-with-php/</link>
<description><![CDATA[ <p>This code shows how to parse XML file in easy way using PHP.</p> ]]></description>
<pubDate>Sun, 24 Feb 2013 20:18:43 GMT</pubDate>
<guid>http://snipplr.com/view/70081/parsing-xml-file-with-php/</guid>
</item>
<item>
<title>(PHP) Parse Attributes - ryanve</title>
<link>http://snipplr.com/view/69712/parse-attributes/</link>
<description><![CDATA[ <p>Parse an attributes string into an array. If the string starts with a tag, then the attributes on the first tag are parsed. This parses via a manual loop and is designed to be safer than using DOMDocument.</p> ]]></description>
<pubDate>Thu, 31 Jan 2013 10:42:33 GMT</pubDate>
<guid>http://snipplr.com/view/69712/parse-attributes/</guid>
</item>
<item>
<title>(C#) .NET - C# - WebClient and HtmlAgilityPack - Fetching and Parsing HTML - denakitan</title>
<link>http://snipplr.com/view/68101/net--c--webclient-and-htmlagilitypack--fetching-and-parsing-html/</link>
<description><![CDATA[ <p>Shows how to use WebClient class to retrieve HTML from an URL and then to use HtmlAgilityPack to parse it.</p> ]]></description>
<pubDate>Mon, 05 Nov 2012 14:50:26 GMT</pubDate>
<guid>http://snipplr.com/view/68101/net--c--webclient-and-htmlagilitypack--fetching-and-parsing-html/</guid>
</item>
<item>
<title>(C#) HideMyAss Proxy Grabber - icinNet</title>
<link>http://snipplr.com/view/65990/hidemyass-proxy-grabber/</link>
<description><![CDATA[ <p>A small snippet to parse out proxies from http://hidemyass.com/proxy-list/</p> ]]></description>
<pubDate>Fri, 06 Jul 2012 18:14:56 GMT</pubDate>
<guid>http://snipplr.com/view/65990/hidemyass-proxy-grabber/</guid>
</item>
<item>
<title>(JavaScript) Parse URI parameters with Prototype JS - srka</title>
<link>http://snipplr.com/view/62361/parse-uri-parameters-with-prototype-js/</link>
<description><![CDATA[ <p>This will return the value of "param" form the URI. For example if you have 

www.example.com/index.html?param=some_value

it will return "some_value".

NOTE! This only works if you use Prototype JavaScript framework.</p> ]]></description>
<pubDate>Fri, 06 Jan 2012 21:03:25 GMT</pubDate>
<guid>http://snipplr.com/view/62361/parse-uri-parameters-with-prototype-js/</guid>
</item>
<item>
<title>(PHP) Get YouTube Video ID [Very robust] - jmiller</title>
<link>http://snipplr.com/view/62238/get-youtube-video-id-very-robust/</link>
<description><![CDATA[ <p>This will get the 11-character YouTube video ID from any valid YouTube URL.

Based on http://snipplr.com/view/57065/get-youtube-video-id/ but made more robust to handle additional URL inputs</p> ]]></description>
<pubDate>Tue, 03 Jan 2012 17:17:29 GMT</pubDate>
<guid>http://snipplr.com/view/62238/get-youtube-video-id-very-robust/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Parse TimedText (TT) XML Captions File - adrianparr</title>
<link>http://snipplr.com/view/62031/as3-parse-timedtext-tt-xml-captions-file/</link>
<description><![CDATA[ <p>TimedText (TT) XML captions files can have namespaces that cause problems when parsing them in AS3. To get around this you can use this code to remove the namespace from the root XML node using Regex. This example uses</p> ]]></description>
<pubDate>Wed, 21 Dec 2011 00:10:31 GMT</pubDate>
<guid>http://snipplr.com/view/62031/as3-parse-timedtext-tt-xml-captions-file/</guid>
</item>
<item>
<title>(Ruby) Fetch remote JSON in Ruby - vestimir</title>
<link>http://snipplr.com/view/61726/fetch-remote-json-in-ruby/</link>
<description><![CDATA[ <p>An example method for fetching remote JSON data in Ruby.</p> ]]></description>
<pubDate>Wed, 07 Dec 2011 23:55:02 GMT</pubDate>
<guid>http://snipplr.com/view/61726/fetch-remote-json-in-ruby/</guid>
</item>
<item>
<title>(ActionScript 3) parse "&amp;amp;apos: etc to Html - GunnarHKarlsson</title>
<link>http://snipplr.com/view/58970/parse-apos-etc-to-html/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 22 Sep 2011 10:51:16 GMT</pubDate>
<guid>http://snipplr.com/view/58970/parse-apos-etc-to-html/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Get formatted time from dirty timestamp string - adrianparr</title>
<link>http://snipplr.com/view/56330/as3-get-formatted-time-from-dirty-timestamp-string/</link>
<description><![CDATA[ <p>I was working on a project where the timestamp string I was getting from the backend developer was pretty dirty in the way it was formatted. For example, it looked like "/Date(1310127448000+0100)/". I needed to get a nicely formatted time from it in the format hrs:mins</p> ]]></description>
<pubDate>Fri, 08 Jul 2011 23:20:17 GMT</pubDate>
<guid>http://snipplr.com/view/56330/as3-get-formatted-time-from-dirty-timestamp-string/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Load and access JSON data example - adrianparr</title>
<link>http://snipplr.com/view/56283/as3-load-and-access-json-data-example/</link>
<description><![CDATA[ <p>For this to work you need the as3corelib classes from here ... https://github.com/mikechambers/as3corelib</p> ]]></description>
<pubDate>Fri, 08 Jul 2011 05:33:20 GMT</pubDate>
<guid>http://snipplr.com/view/56283/as3-load-and-access-json-data-example/</guid>
</item>
<item>
<title>(Python) Extracting a URL in Python - magicrebirth</title>
<link>http://snipplr.com/view/55134/extracting-a-url-in-python/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 10 Jun 2011 23:43:42 GMT</pubDate>
<guid>http://snipplr.com/view/55134/extracting-a-url-in-python/</guid>
</item>
<item>
<title>(Python) pastebin parser - shadevampire</title>
<link>http://snipplr.com/view/54574/pastebin-parser/</link>
<description><![CDATA[ <p>"This is the source code to the program I used to scrape these 'public pastes' from pastebin.com. Use at your own peril!" - from the mentioned link</p> ]]></description>
<pubDate>Sun, 29 May 2011 23:05:39 GMT</pubDate>
<guid>http://snipplr.com/view/54574/pastebin-parser/</guid>
</item>
<item>
<title>(Java) String to Char Array (char[]) - lowko0</title>
<link>http://snipplr.com/view/54402/string-to-char-array-char/</link>
<description><![CDATA[ <p>I hope its easy to understand. Any doubts just post a comment.
Thanks.</p> ]]></description>
<pubDate>Thu, 26 May 2011 08:27:26 GMT</pubDate>
<guid>http://snipplr.com/view/54402/string-to-char-array-char/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 XML Load/Parse - merrittwjm</title>
<link>http://snipplr.com/view/53161/as3-xml-loadparse/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 06 May 2011 23:00:27 GMT</pubDate>
<guid>http://snipplr.com/view/53161/as3-xml-loadparse/</guid>
</item>
<item>
<title>(PHP) Get PHP to parse on local server - stephcode</title>
<link>http://snipplr.com/view/51797/get-php-to-parse-on-local-server/</link>
<description><![CDATA[ <p>AddHandler application/x-httpd-php .php .htm ... worked for me (directory: xampp/apache/conf)</p> ]]></description>
<pubDate>Sat, 09 Apr 2011 02:30:46 GMT</pubDate>
<guid>http://snipplr.com/view/51797/get-php-to-parse-on-local-server/</guid>
</item>
<item>
<title>(PHP) Parse phrases from string - jenolan</title>
<link>http://snipplr.com/view/51197/parse-phrases-from-string/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 28 Mar 2011 11:52:52 GMT</pubDate>
<guid>http://snipplr.com/view/51197/parse-phrases-from-string/</guid>
</item>
<item>
<title>(PHP) .htaccess parse htm to php5 - stephcode</title>
<link>http://snipplr.com/view/51152/htaccess-parse-htm-to-php5/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 26 Mar 2011 08:28:08 GMT</pubDate>
<guid>http://snipplr.com/view/51152/htaccess-parse-htm-to-php5/</guid>
</item>
<item>
<title>(Perl) Text::CSV by hashref - alfirth</title>
<link>http://snipplr.com/view/50024/textcsv-by-hashref/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 04 Mar 2011 07:31:46 GMT</pubDate>
<guid>http://snipplr.com/view/50024/textcsv-by-hashref/</guid>
</item>
<item>
<title>(JavaScript) javascript json snips - sospartan</title>
<link>http://snipplr.com/view/46284/javascript-json-snips/</link>
<description><![CDATA[ <p>copy from google code search result page</p> ]]></description>
<pubDate>Thu, 30 Dec 2010 16:18:29 GMT</pubDate>
<guid>http://snipplr.com/view/46284/javascript-json-snips/</guid>
</item>
</channel>
</rss>