<?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/language/regex/tags/regular</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Sun, 26 May 2013 03:19:18 GMT</pubDate>
<item>
<title>(Regular Expression) Regex Leading and Trailing Whitespace - Pavonz</title>
<link>http://snipplr.com/view/70938/regex-leading-and-trailing-whitespace/</link>
<description><![CDATA[ <p>Leading and Trailing Whitespace</p> ]]></description>
<pubDate>Fri, 26 Apr 2013 15:59:40 GMT</pubDate>
<guid>http://snipplr.com/view/70938/regex-leading-and-trailing-whitespace/</guid>
</item>
<item>
<title>(Regular Expression) Hexadecimal color regex match - guilhermehn</title>
<link>http://snipplr.com/view/65915/hexadecimal-color-regex-match/</link>
<description><![CDATA[ <p>Regex code to match hexadecimal colors</p> ]]></description>
<pubDate>Tue, 03 Jul 2012 07:04:53 GMT</pubDate>
<guid>http://snipplr.com/view/65915/hexadecimal-color-regex-match/</guid>
</item>
<item>
<title>(Regular Expression) URL Matching - benrasmusen</title>
<link>http://snipplr.com/view/38078/url-matching/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 30 Jul 2010 06:53:31 GMT</pubDate>
<guid>http://snipplr.com/view/38078/url-matching/</guid>
</item>
<item>
<title>(Regular Expression) RegEx Regular Expression to match < > java doc tags in JSP (liferay) - brandonjp</title>
<link>http://snipplr.com/view/37835/regex-regular-expression-to-match---java-doc-tags-in-jsp-liferay/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 24 Jul 2010 02:17:40 GMT</pubDate>
<guid>http://snipplr.com/view/37835/regex-regular-expression-to-match---java-doc-tags-in-jsp-liferay/</guid>
</item>
<item>
<title>(Regular Expression) Regular Expression Search / Replace (PSPad): Replace Empty Footnotes Anchors with Linked Numbers - karlhorky</title>
<link>http://snipplr.com/view/22870/regular-expression-search--replace-pspad-replace-empty-footnotes-anchors-with-linked-numbers/</link>
<description><![CDATA[ <p>This search and replace fixes empty footnote anchors that appear when copying / pasting Word content into a Dreamweaver html document.</p> ]]></description>
<pubDate>Tue, 10 Nov 2009 13:10:48 GMT</pubDate>
<guid>http://snipplr.com/view/22870/regular-expression-search--replace-pspad-replace-empty-footnotes-anchors-with-linked-numbers/</guid>
</item>
<item>
<title>(Regular Expression) Regular Expression Search / Replace (PSPad): Replace Fake Links (Underlined Text) with Real Links - karlhorky</title>
<link>http://snipplr.com/view/22002/regular-expression-search--replace-pspad-replace-fake-links-underlined-text-with-real-links/</link>
<description><![CDATA[ <p>Sometimes HTML provided by clients or generated by WYSIWYGs contains links as plaintext with underlines in many instances and stripping this out by hand is time consuming. This search and replace (tested in PSPad, but may work in other code editors) will do the job for you.</p> ]]></description>
<pubDate>Tue, 27 Oct 2009 22:01:54 GMT</pubDate>
<guid>http://snipplr.com/view/22002/regular-expression-search--replace-pspad-replace-fake-links-underlined-text-with-real-links/</guid>
</item>
<item>
<title>(Regular Expression) Find CSS Attributes - mocha0range</title>
<link>http://snipplr.com/view/17903/find-css-attributes/</link>
<description><![CDATA[ <p>This finds individual CSS attributes, i.e. "foo : bar;" or "bar : 2px solid foo;"</p> ]]></description>
<pubDate>Tue, 04 Aug 2009 18:27:51 GMT</pubDate>
<guid>http://snipplr.com/view/17903/find-css-attributes/</guid>
</item>
<item>
<title>(Regular Expression) Find CSS Style Names - mocha0range</title>
<link>http://snipplr.com/view/17902/find-css-style-names/</link>
<description><![CDATA[ <p>This finds CSS style names, i.e. "#foo" or "#foo, .bar"

Note: You'll need to chomp the trailing "\s{" off the end of the matched string. I matched it just to make sure that it didn't get anything else.</p> ]]></description>
<pubDate>Tue, 04 Aug 2009 18:27:02 GMT</pubDate>
<guid>http://snipplr.com/view/17902/find-css-style-names/</guid>
</item>
<item>
<title>(Regular Expression) Find CSS Style Definitions - mocha0range</title>
<link>http://snipplr.com/view/17901/find-css-style-definitions/</link>
<description><![CDATA[ <p>This finds the entire style definition - from #foo to the last brace.

i.e. ".foo, #bar { foo: bar; foo: bar; bar: foo; }"</p> ]]></description>
<pubDate>Tue, 04 Aug 2009 18:25:28 GMT</pubDate>
<guid>http://snipplr.com/view/17901/find-css-style-definitions/</guid>
</item>
<item>
<title>(Regular Expression) Regular Expression, getting all parts of a E-Mail Date Header field - dreadwarrior</title>
<link>http://snipplr.com/view/17316/regular-expression-getting-all-parts-of-a-email-date-header-field/</link>
<description><![CDATA[ <p>This snippet is useful if you want to extract the relevant parts out of an Date header field of an email message. It was created according to the [RFC 5322 rules](http://tools.ietf.org/html/rfc5322#page-15 "RFC 5322, Page 15"). It supports named capturing groups for easier access of the date parts.

tested in PHP 5.2.6

2do:

* deal with obs-% data</p> ]]></description>
<pubDate>Wed, 22 Jul 2009 03:48:17 GMT</pubDate>
<guid>http://snipplr.com/view/17316/regular-expression-getting-all-parts-of-a-email-date-header-field/</guid>
</item>
<item>
<title>(Regular Expression) RegEx to clean tiddlywiki files of google-navclient-hilite junk. - jimfred</title>
<link>http://snipplr.com/view/9956/regex-to-clean-tiddlywiki-files-of-googlenavclienthilite-junk/</link>
<description><![CDATA[ <p>wiki files accumulate google-navclient-hilite junk created by the search highlighter in the google toolbar. Search the internet for "SPAN id google-navclient-hilite" and expect to see wiki entries with markup junk generated by the google toolbar.

The regular expression find-and-replace can clean it up using the RegEx shown in Source, below.</p> ]]></description>
<pubDate>Fri, 21 Nov 2008 11:45:38 GMT</pubDate>
<guid>http://snipplr.com/view/9956/regex-to-clean-tiddlywiki-files-of-googlenavclienthilite-junk/</guid>
</item>
<item>
<title>(Regular Expression) Mexican RFC RegEx - axelitus</title>
<link>http://snipplr.com/view/4305/mexican-rfc-regex/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 11 Dec 2007 17:57:48 GMT</pubDate>
<guid>http://snipplr.com/view/4305/mexican-rfc-regex/</guid>
</item>
</channel>
</rss>