<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dreamluverz collection &#187; regex</title>
	<atom:link href="http://dreamluverz.com/category/developers-tools/regex/feed" rel="self" type="application/rss+xml" />
	<link>http://dreamluverz.com</link>
	<description>Never stop dreaming, until you&#039;re ready to wake up and make it happen</description>
	<lastBuildDate>Wed, 18 Jan 2012 14:10:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>regex cheat sheet</title>
		<link>http://dreamluverz.com/developers-tools/regex/regex-cheat-sheet</link>
		<comments>http://dreamluverz.com/developers-tools/regex/regex-cheat-sheet#comments</comments>
		<pubDate>Tue, 09 Mar 2010 01:44:13 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[regex]]></category>
		<category><![CDATA[cheat sheet regex]]></category>
		<category><![CDATA[regex cheat sheet]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=801</guid>
		<description><![CDATA[Special Sequences \w - Any “word” character (a-z 0-9 _) \W - Any non “word” character \s - Whitespace (space, tab CRLF) \S - Any non whitepsace character \d - Digits (0-9) \D - Any non digit character . - (Period) – Any character except newline Meta &#8230; <a href="http://dreamluverz.com/developers-tools/regex/regex-cheat-sheet">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/regex/regex-cheat-sheet/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>regex: match all including new line</title>
		<link>http://dreamluverz.com/developers-tools/regex-match-all-including-new-line</link>
		<comments>http://dreamluverz.com/developers-tools/regex-match-all-including-new-line#comments</comments>
		<pubDate>Mon, 08 Mar 2010 18:19:40 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[developer's Guide]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[match all]]></category>
		<category><![CDATA[match all and new line]]></category>
		<category><![CDATA[match new line]]></category>
		<category><![CDATA[new line]]></category>
		<category><![CDATA[preg_match]]></category>
		<category><![CDATA[regular expression]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=796</guid>
		<description><![CDATA[I was looking for a way to match all characters plus new line and using &#8220;.&#8221; is not solely the answer because: The dot matches a single character, without caring what that character is. The only exception are newline characters. &#8230; <a href="http://dreamluverz.com/developers-tools/regex-match-all-including-new-line">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/regex-match-all-including-new-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>regex: matching character +</title>
		<link>http://dreamluverz.com/developers-tools/regex/regex-matching-character</link>
		<comments>http://dreamluverz.com/developers-tools/regex/regex-matching-character#comments</comments>
		<pubDate>Fri, 22 May 2009 07:02:39 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[regex]]></category>
		<category><![CDATA[matching charater]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=615</guid>
		<description><![CDATA[regex matching charater &#8220;+&#8221; Example: ad+ will match add, adD, addng but not ab or ac or a Related article: http://dreamluverz.com/developers-tools/regex/regex-matching-characters]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/regex/regex-matching-character/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>preg_match case insensitive</title>
		<link>http://dreamluverz.com/developers-tools/php/preg_match-case-insensitive</link>
		<comments>http://dreamluverz.com/developers-tools/php/preg_match-case-insensitive#comments</comments>
		<pubDate>Wed, 20 May 2009 16:40:37 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[case insensitive]]></category>
		<category><![CDATA[php function]]></category>
		<category><![CDATA[preg_match]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=594</guid>
		<description><![CDATA[preg_match case insensitive &#60;?php //Â TheÂ "i"Â afterÂ theÂ patternÂ delimiterÂ indicatesÂ aÂ case-insensitiveÂ search ifÂ (preg_match("/php/i",Â "PHPÂ isÂ theÂ webÂ scriptingÂ languageÂ ofÂ choice."))Â { Â Â Â Â echoÂ "AÂ matchÂ wasÂ found."; }Â elseÂ { Â Â Â Â echoÂ "AÂ matchÂ wasÂ notÂ found."; } ?&#62;]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/php/preg_match-case-insensitive/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>regex: matching characters</title>
		<link>http://dreamluverz.com/developers-tools/regex/regex-matching-characters</link>
		<comments>http://dreamluverz.com/developers-tools/regex/regex-matching-characters#comments</comments>
		<pubDate>Mon, 04 May 2009 12:18:16 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[regex]]></category>
		<category><![CDATA[how to regex]]></category>
		<category><![CDATA[match characters]]></category>
		<category><![CDATA[regex guide]]></category>
		<category><![CDATA[regex match]]></category>
		<category><![CDATA[regex sample guide]]></category>
		<category><![CDATA[regex samples]]></category>
		<category><![CDATA[regular expression]]></category>
		<category><![CDATA[regular expression guide]]></category>
		<category><![CDATA[regular expression samples]]></category>
		<category><![CDATA[what is regex]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=530</guid>
		<description><![CDATA[I wanted to note it down coz I always tend to forget these commonly used special sequences in regular expression. I hope it will also help you in one way or another. Matching Characters Most letters and characters will simply &#8230; <a href="http://dreamluverz.com/developers-tools/regex/regex-matching-characters">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/regex/regex-matching-characters/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>regex: backreferences</title>
		<link>http://dreamluverz.com/developers-tools/regex/regex-backreferences</link>
		<comments>http://dreamluverz.com/developers-tools/regex/regex-backreferences#comments</comments>
		<pubDate>Mon, 27 Apr 2009 05:25:52 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[regex]]></category>
		<category><![CDATA[regex backreferences]]></category>
		<category><![CDATA[regular expression]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=516</guid>
		<description><![CDATA[Backreferences Perhaps the most powerful element of the regular expression syntax, backreferences allow you to load the results of a matched pattern into a buffer and then reuse it later in the expression. In a previous example, we used two &#8230; <a href="http://dreamluverz.com/developers-tools/regex/regex-backreferences">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/regex/regex-backreferences/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>validate http:// or https:// using regex</title>
		<link>http://dreamluverz.com/developers-tools/regex/validate-http-or-https-using-regex</link>
		<comments>http://dreamluverz.com/developers-tools/regex/validate-http-or-https-using-regex#comments</comments>
		<pubDate>Tue, 10 Mar 2009 09:07:27 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[regex]]></category>
		<category><![CDATA[http://]]></category>
		<category><![CDATA[https://]]></category>
		<category><![CDATA[regular expressions]]></category>
		<category><![CDATA[validate url]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=450</guid>
		<description><![CDATA[You can validate http:// or https:// using the methods below: $link = "http://site.com";Â  or $link = "https://site.com"; Example: My values would be either of the two, with or without "s". Method 1: echo preg_match("^(http(s?))://^", $link); I prefer this method Method &#8230; <a href="http://dreamluverz.com/developers-tools/regex/validate-http-or-https-using-regex">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/regex/validate-http-or-https-using-regex/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>regex</title>
		<link>http://dreamluverz.com/developers-tools/regex/regex</link>
		<comments>http://dreamluverz.com/developers-tools/regex/regex#comments</comments>
		<pubDate>Thu, 22 Jan 2009 09:08:30 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[regex]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=297</guid>
		<description><![CDATA[Just wanted to share regex reference site. You can check it here http://www.grymoire.com/Unix/Regular.html for more details. What is a Regular Expression? A regular expression is a set of characters that specify a pattern. The term &#8220;regular&#8221; has nothing to do &#8230; <a href="http://dreamluverz.com/developers-tools/regex/regex">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/regex/regex/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

