<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Regular Expressions in C# &#8211; The Basics</title>
	<atom:link href="http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/</link>
	<description>Information, news about programming in C#</description>
	<lastBuildDate>Sat, 04 Jun 2011 10:24:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Edwin</title>
		<link>http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/comment-page-1/#comment-11089</link>
		<dc:creator>Edwin</dc:creator>
		<pubDate>Tue, 17 May 2011 18:07:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=789#comment-11089</guid>
		<description>Thanks for posting about regular expressions.  I was having trouble with that and also anchoring.  I&#039;m currently taking classes and was a little confused.  Thanks again.</description>
		<content:encoded><![CDATA[<p>Thanks for posting about regular expressions.  I was having trouble with that and also anchoring.  I&#8217;m currently taking classes and was a little confused.  Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john</title>
		<link>http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/comment-page-1/#comment-6957</link>
		<dc:creator>john</dc:creator>
		<pubDate>Sat, 02 Apr 2011 03:51:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=789#comment-6957</guid>
		<description>Thanks! really your post help me in to build a better website!</description>
		<content:encoded><![CDATA[<p>Thanks! really your post help me in to build a better website!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Regular Expression in C# -Validating Simple E-mail address &#171; All About .NET</title>
		<link>http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/comment-page-1/#comment-1616</link>
		<dc:creator>Regular Expression in C# -Validating Simple E-mail address &#171; All About .NET</dc:creator>
		<pubDate>Wed, 11 Nov 2009 08:48:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=789#comment-1616</guid>
		<description>[...] http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/" >http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Holystream</title>
		<link>http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/comment-page-1/#comment-1445</link>
		<dc:creator>Holystream</dc:creator>
		<pubDate>Fri, 02 Oct 2009 17:12:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=789#comment-1445</guid>
		<description>I just picked this out randomly, but one of your examples is inaccurate:

    * a[bz]+z against “abcbzcdze” returns “abcbzcdz“

it does not return abcdzcdz at all.  The expression actually means something like this:
Matches a and any b or z that comes after it, one or more times, then z at the end.

So, when it matches against &quot;abcbzcdze&quot;, it finds a, then find b, then but it cannot find z as required. So, it doesn&#039;t return anything!

a better expression should be: a[a-z]+?z or a.+?z if you want to return a[a-z]+?z, or a[a-z]+z  or a.+z if you want to return abcbzcdz</description>
		<content:encoded><![CDATA[<p>I just picked this out randomly, but one of your examples is inaccurate:</p>
<p>    * a[bz]+z against “abcbzcdze” returns “abcbzcdz“</p>
<p>it does not return abcdzcdz at all.  The expression actually means something like this:<br />
Matches a and any b or z that comes after it, one or more times, then z at the end.</p>
<p>So, when it matches against &#8220;abcbzcdze&#8221;, it finds a, then find b, then but it cannot find z as required. So, it doesn&#8217;t return anything!</p>
<p>a better expression should be: a[a-z]+?z or a.+?z if you want to return a[a-z]+?z, or a[a-z]+z  or a.+z if you want to return abcbzcdz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexey</title>
		<link>http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/comment-page-1/#comment-722</link>
		<dc:creator>Alexey</dc:creator>
		<pubDate>Sun, 12 Apr 2009 12:04:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=789#comment-722</guid>
		<description>Thank you, interesting course on regular expressions. Not a long ago a task appeared to on by him.</description>
		<content:encoded><![CDATA[<p>Thank you, interesting course on regular expressions. Not a long ago a task appeared to on by him.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nayana</title>
		<link>http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/comment-page-1/#comment-673</link>
		<dc:creator>Nayana</dc:creator>
		<pubDate>Mon, 06 Apr 2009 09:37:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=789#comment-673</guid>
		<description>I had always struggled to understand regular expressions.But this article is of great help to understand them.Thanks a lot.</description>
		<content:encoded><![CDATA[<p>I had always struggled to understand regular expressions.But this article is of great help to understand them.Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martijn</title>
		<link>http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/comment-page-1/#comment-416</link>
		<dc:creator>Martijn</dc:creator>
		<pubDate>Tue, 10 Mar 2009 07:36:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=789#comment-416</guid>
		<description>Thank you both for your comments ! Trying to keep it simple with regular expressions turned out to be quite a challenge.</description>
		<content:encoded><![CDATA[<p>Thank you both for your comments ! Trying to keep it simple with regular expressions turned out to be quite a challenge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/comment-page-1/#comment-414</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Tue, 10 Mar 2009 05:05:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=789#comment-414</guid>
		<description>Just my level. Just the basics.
Never used it in C#, but it is incredibly useful in almost every language (just some syntax differences).</description>
		<content:encoded><![CDATA[<p>Just my level. Just the basics.<br />
Never used it in C#, but it is incredibly useful in almost every language (just some syntax differences).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Itay</title>
		<link>http://www.dijksterhuis.org/regular-expressions-in-csharp-the-basics/comment-page-1/#comment-409</link>
		<dc:creator>Itay</dc:creator>
		<pubDate>Mon, 09 Mar 2009 08:52:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.dijksterhuis.org/?p=789#comment-409</guid>
		<description>I realy like your explanation, simple and clear.</description>
		<content:encoded><![CDATA[<p>I realy like your explanation, simple and clear.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

