<?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: A JScript/VBScript Regex Lookahead Bug</title>
	<atom:link href="http://blog.stevenlevithan.com/archives/regex-lookahead-bug/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.stevenlevithan.com/archives/regex-lookahead-bug</link>
	<description>A JavaScript and regular expression centric blog</description>
	<lastBuildDate>Thu, 09 Feb 2012 10:18:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: RegEx problem with IE7 when trying validate Email address</title>
		<link>http://blog.stevenlevithan.com/archives/regex-lookahead-bug/comment-page-1#comment-142163</link>
		<dc:creator>RegEx problem with IE7 when trying validate Email address</dc:creator>
		<pubDate>Fri, 07 Oct 2011 12:28:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/archives/regex-lookahead-bug#comment-142163</guid>
		<description>[...] Now this works allright with IE8 &#8211;&gt; and latest Mozilla and Opera version for example. I already read about this article: http://blog.stevenlevithan.com/archives/regex-lookahead-bug [...]</description>
		<content:encoded><![CDATA[<p>[...] Now this works allright with IE8 &#8211;&gt; and latest Mozilla and Opera version for example. I already read about this article: <a href="http://blog.stevenlevithan.com/archives/regex-lookahead-bug" rel="nofollow">http://blog.stevenlevithan.com/archives/regex-lookahead-bug</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Praveen</title>
		<link>http://blog.stevenlevithan.com/archives/regex-lookahead-bug/comment-page-1#comment-93260</link>
		<dc:creator>Praveen</dc:creator>
		<pubDate>Fri, 08 Apr 2011 04:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/archives/regex-lookahead-bug#comment-93260</guid>
		<description>I need a help regarding regular expression for strong password. conditions are


Password must contain at least 8 characters including at least 2 numbers 

Must Allowed :
1abcdef2
21abcdef
abcdef22
1abcd4ef
1a$bcdef
1abcd^f2
12345678
1234567d
1234567%
1234567%33434
1234567%ddd
1234567dd%

Not Allowed
abcdef5%


it has to work in IE 7 ,IE8 

i have a regulare Expression (ValidationExpression=&quot;(?=(?:.*?\d){2})(?=(?:.*?[A-Za-z@#$%^&amp;+=]){2}).{8,}&quot; ) 
but it is not working in IE7</description>
		<content:encoded><![CDATA[<p>I need a help regarding regular expression for strong password. conditions are</p>
<p>Password must contain at least 8 characters including at least 2 numbers </p>
<p>Must Allowed :<br />
1abcdef2<br />
21abcdef<br />
abcdef22<br />
1abcd4ef<br />
1a$bcdef<br />
1abcd^f2<br />
12345678<br />
1234567d<br />
1234567%<br />
1234567%33434<br />
1234567%ddd<br />
1234567dd%</p>
<p>Not Allowed<br />
abcdef5%</p>
<p>it has to work in IE 7 ,IE8 </p>
<p>i have a regulare Expression (ValidationExpression=&#8221;(?=(?:.*?\d){2})(?=(?:.*?[A-Za-z@#$%^&amp;+=]){2}).{8,}&#8221; )<br />
but it is not working in IE7</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: B. David Holt</title>
		<link>http://blog.stevenlevithan.com/archives/regex-lookahead-bug/comment-page-1#comment-60515</link>
		<dc:creator>B. David Holt</dc:creator>
		<pubDate>Thu, 30 Sep 2010 11:54:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/archives/regex-lookahead-bug#comment-60515</guid>
		<description>It looks like the capturing is the problem.  My solution:

follow every lookahead (except the last one, if it is the ending of the regex) with:
.*?


If your regex ends with a lookahead, follow it with
.*

IE7 appears to want to end the validation with a capture.</description>
		<content:encoded><![CDATA[<p>It looks like the capturing is the problem.  My solution:</p>
<p>follow every lookahead (except the last one, if it is the ending of the regex) with:<br />
.*?</p>
<p>If your regex ends with a lookahead, follow it with<br />
.*</p>
<p>IE7 appears to want to end the validation with a capture.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse</title>
		<link>http://blog.stevenlevithan.com/archives/regex-lookahead-bug/comment-page-1#comment-60031</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Tue, 21 Sep 2010 22:10:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/archives/regex-lookahead-bug#comment-60031</guid>
		<description>Did anyone actually file a bug at Microsoft Connect for this? And does this still exist after all the years of servicepacks and updates?</description>
		<content:encoded><![CDATA[<p>Did anyone actually file a bug at Microsoft Connect for this? And does this still exist after all the years of servicepacks and updates?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A JScript/VBScript Regex Lookahead Bug &#171; DotNet Strings</title>
		<link>http://blog.stevenlevithan.com/archives/regex-lookahead-bug/comment-page-1#comment-59086</link>
		<dc:creator>A JScript/VBScript Regex Lookahead Bug &#171; DotNet Strings</dc:creator>
		<pubDate>Mon, 06 Sep 2010 09:36:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/archives/regex-lookahead-bug#comment-59086</guid>
		<description>[...] to a blog post by Steve that describes the bug with a password-complexity regex. However, the bug description there is [...]</description>
		<content:encoded><![CDATA[<p>[...] to a blog post by Steve that describes the bug with a password-complexity regex. However, the bug description there is [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

