<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Regular Expressions in PHP</title>
	<link>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/</link>
	<description>Web Development Blog</description>
	<pubDate>Sat, 05 Jul 2008 00:15:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.2</generator>

	<item>
		<title>by: Jerry</title>
		<link>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-27158</link>
		<pubDate>Sat, 15 Mar 2008 04:35:21 +0000</pubDate>
		<guid>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-27158</guid>
					<description>Great post on regex.  Thanks!</description>
		<content:encoded><![CDATA[<p>Great post on regex.  Thanks!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: israeljernigan.com &#187; PHP Learning resources</title>
		<link>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-23587</link>
		<pubDate>Fri, 11 Jan 2008 16:03:14 +0000</pubDate>
		<guid>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-23587</guid>
					<description>[...] I wanted to learn about REGEXP in PHP, mostly for security verification. Here are two links that helped pave the way. The basics. More advanced methods. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] I wanted to learn about REGEXP in PHP, mostly for security verification. Here are two links that helped pave the way. The basics. More advanced methods. [&#8230;]
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: raghu</title>
		<link>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-23451</link>
		<pubDate>Wed, 09 Jan 2008 09:22:35 +0000</pubDate>
		<guid>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-23451</guid>
					<description>It is a nicely written tutorial about regular expression. Lots of doubts about regex are cleared after reading this.
Thanks a lot.</description>
		<content:encoded><![CDATA[<p>It is a nicely written tutorial about regular expression. Lots of doubts about regex are cleared after reading this.<br />
Thanks a lot.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Velmurugan</title>
		<link>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-19477</link>
		<pubDate>Wed, 31 Oct 2007 04:26:14 +0000</pubDate>
		<guid>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-19477</guid>
					<description>Thank you for this article.It helps me to find the pattern matching for hexadecimal color code</description>
		<content:encoded><![CDATA[<p>Thank you for this article.It helps me to find the pattern matching for hexadecimal color code
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Ved</title>
		<link>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-18858</link>
		<pubDate>Tue, 23 Oct 2007 19:57:15 +0000</pubDate>
		<guid>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-18858</guid>
					<description>Hi,

Till now I was shit scared of regular expressions. Very nicely written article.

Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Till now I was shit scared of regular expressions. Very nicely written article.</p>
<p>Thanks a lot.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Rob</title>
		<link>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-15794</link>
		<pubDate>Fri, 24 Aug 2007 01:20:31 +0000</pubDate>
		<guid>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-15794</guid>
					<description>Very good, very helpful. Waaaayyyy better than all of the other reg exp tutorials I have seen in the past twenty minutes!</description>
		<content:encoded><![CDATA[<p>Very good, very helpful. Waaaayyyy better than all of the other reg exp tutorials I have seen in the past twenty minutes!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Abhijeet</title>
		<link>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-15147</link>
		<pubDate>Thu, 09 Aug 2007 07:38:13 +0000</pubDate>
		<guid>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-15147</guid>
					<description>Great!!!

it's really helpfull. I got cleared lot of things</description>
		<content:encoded><![CDATA[<p>Great!!!</p>
<p>it&#039;s really helpfull. I got cleared lot of things
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Nate K</title>
		<link>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-365</link>
		<pubDate>Thu, 22 Jun 2006 14:43:47 +0000</pubDate>
		<guid>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-365</guid>
					<description>Good beginner post for Regular Expressions. I would challenge anyone reading this to dive in deeper on each section. This is a GREAT surface article, but could be built upon for different needs. 

Understanding regex takes time and practice. Even the above example would allow a phone number like 000-000-0000 - which is valid according to your regex, but obviously is not a real phone number. So, dive a little deeper, find the constraints and patterns that need to be checked - and in what order - to compile a valid, working, phone number.

Also, as a side note - you have references to [\s-] and [a-z-], in which case I would ALWAYS put the hyphen in first. This is because the hyphen can also define a range (a-z), so having it first ensures that it is not trying to match a range of letters/numbers because nothing will come before it.

Nice read!</description>
		<content:encoded><![CDATA[<p>Good beginner post for Regular Expressions. I would challenge anyone reading this to dive in deeper on each section. This is a GREAT surface article, but could be built upon for different needs. </p>
<p>Understanding regex takes time and practice. Even the above example would allow a phone number like 000-000-0000 - which is valid according to your regex, but obviously is not a real phone number. So, dive a little deeper, find the constraints and patterns that need to be checked - and in what order - to compile a valid, working, phone number.</p>
<p>Also, as a side note - you have references to [s-] and [a-z-], in which case I would ALWAYS put the hyphen in first. This is because the hyphen can also define a range (a-z), so having it first ensures that it is not trying to match a range of letters/numbers because nothing will come before it.</p>
<p>Nice read!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Jim O&#8217;Halloran&#8217;s Weblog &#187; Blog Archive &#187; links for 2006-06-14</title>
		<link>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-348</link>
		<pubDate>Wed, 14 Jun 2006 22:21:51 +0000</pubDate>
		<guid>http://www.jellyandcustard.com/2006/06/13/regular-expressions-in-php/#comment-348</guid>
					<description>[...] Regular Expressions in PHP · Jelly and Custard An excellent intorduction to using regex&amp;#8217;s in PHP, including a basic explanation of regex syntax. (tags: php regex tutorial webdev) [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Regular Expressions in PHP · Jelly and Custard An excellent intorduction to using regex&#039;s in PHP, including a basic explanation of regex syntax. (tags: php regex tutorial webdev) [&#8230;]
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
