<?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: Mimicking Lookbehind in JavaScript</title>
	<atom:link href="http://blog.stevenlevithan.com/archives/mimic-lookbehind-javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.stevenlevithan.com/archives/mimic-lookbehind-javascript</link>
	<description>A JavaScript and regular expression centric blog</description>
	<lastBuildDate>Sat, 13 Mar 2010 15:18:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Regular Expression Basics</title>
		<link>http://blog.stevenlevithan.com/archives/mimic-lookbehind-javascript/comment-page-1#comment-47367</link>
		<dc:creator>Regular Expression Basics</dc:creator>
		<pubDate>Sun, 07 Feb 2010 21:24:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/regular-expressions/mimic-lookbehind-javascript/#comment-47367</guid>
		<description>[...] are ways to mimic it but that is outside the scope of this article so I&#8217;ll refer you to here: http://blog.stevenlevithan.com/archives/mimic-lookbehind-javascript &lt;script&gt; var string = &quot;Here is some text about JavaScript (also known as JScript). It [...]</description>
		<content:encoded><![CDATA[<p>[...] are ways to mimic it but that is outside the scope of this article so I&#8217;ll refer you to here: <a href="http://blog.stevenlevithan.com/archives/mimic-lookbehind-javascript" rel="nofollow">http://blog.stevenlevithan.com/archives/mimic-lookbehind-javascript</a> &lt;script&gt; var string = &quot;Here is some text about JavaScript (also known as JScript). It [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devMan</title>
		<link>http://blog.stevenlevithan.com/archives/mimic-lookbehind-javascript/comment-page-1#comment-46833</link>
		<dc:creator>devMan</dc:creator>
		<pubDate>Mon, 01 Feb 2010 09:25:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/regular-expressions/mimic-lookbehind-javascript/#comment-46833</guid>
		<description>Actually,
I have this regexp but in php:
(? &lt;= and &#124; or &#124; \( ) $myString (? = (and &#124; or &#124; \\) )?)</description>
		<content:encoded><![CDATA[<p>Actually,<br />
I have this regexp but in php:<br />
(? &lt;= and | or | \( ) $myString (? = (and | or | \\) )?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devMan</title>
		<link>http://blog.stevenlevithan.com/archives/mimic-lookbehind-javascript/comment-page-1#comment-46831</link>
		<dc:creator>devMan</dc:creator>
		<pubDate>Mon, 01 Feb 2010 08:59:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/regular-expressions/mimic-lookbehind-javascript/#comment-46831</guid>
		<description>hello,
I want a regext javascript to retrieve the numbers followed by a:
 * - Or &#124; and
 * -) (Closing parenthesis)
 * - No (end of string)

and preceded by:
* - Or &#124; and
* - (  (Open parenthesis)
* - Nothing (beginning of string)
thank you in advance</description>
		<content:encoded><![CDATA[<p>hello,<br />
I want a regext javascript to retrieve the numbers followed by a:<br />
 * &#8211; Or | and<br />
 * -) (Closing parenthesis)<br />
 * &#8211; No (end of string)</p>
<p>and preceded by:<br />
* &#8211; Or | and<br />
* &#8211; (  (Open parenthesis)<br />
* &#8211; Nothing (beginning of string)<br />
thank you in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: F1LT3R</title>
		<link>http://blog.stevenlevithan.com/archives/mimic-lookbehind-javascript/comment-page-1#comment-46546</link>
		<dc:creator>F1LT3R</dc:creator>
		<pubDate>Mon, 25 Jan 2010 06:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/regular-expressions/mimic-lookbehind-javascript/#comment-46546</guid>
		<description>I tried your method but didnt get the results I was looking for...
When I run this expression: /(?&amp;lt![#\da-zA-z])(\d+)f/g
On this string: &quot;1.2f; #00ff00&quot;
I should get: &quot;1.2; #00ff00&quot;

The &#039;f&#039; shoudl get removed.

Any ideas?</description>
		<content:encoded><![CDATA[<p>I tried your method but didnt get the results I was looking for&#8230;<br />
When I run this expression: /(?&amp;lt![#\da-zA-z])(\d+)f/g<br />
On this string: &#8220;1.2f; #00ff00&#8243;<br />
I should get: &#8220;1.2; #00ff00&#8243;</p>
<p>The &#8216;f&#8217; shoudl get removed.</p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis Chu</title>
		<link>http://blog.stevenlevithan.com/archives/mimic-lookbehind-javascript/comment-page-1#comment-44145</link>
		<dc:creator>Dennis Chu</dc:creator>
		<pubDate>Sun, 29 Nov 2009 06:56:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stevenlevithan.com/regular-expressions/mimic-lookbehind-javascript/#comment-44145</guid>
		<description>Good Day, 

Actually, I was searching thru the book and also look at your regex howevever, due to my limited understanding of implementation of regex in JavaScript, found it rather hard to understand.

I already have a Perl regex of :&quot;(?&lt;=\=)\w+(?=;&#124;,)&quot;  to trap the string between the &quot;=&quot; sign and the &quot;,&quot; or &quot;;&quot;. 

C132   C                      1=UNNAMED_1_CON18_I1_A,
                              2=EARTH;

Would it be possible to should how could I store the content between the detected by the Perl Regex into a Variable for further processing</description>
		<content:encoded><![CDATA[<p>Good Day, </p>
<p>Actually, I was searching thru the book and also look at your regex howevever, due to my limited understanding of implementation of regex in JavaScript, found it rather hard to understand.</p>
<p>I already have a Perl regex of :&#8221;(?&lt;=\=)\w+(?=;|,)&quot;  to trap the string between the &quot;=&quot; sign and the &quot;,&quot; or &quot;;&quot;. </p>
<p>C132   C                      1=UNNAMED_1_CON18_I1_A,<br />
                              2=EARTH;</p>
<p>Would it be possible to should how could I store the content between the detected by the Perl Regex into a Variable for further processing</p>
]]></content:encoded>
	</item>
</channel>
</rss>
