<?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"
	>
<channel>
	<title>Comments on: regex 0.9.6</title>
	<atom:link href="http://www.larsolavtorvik.com/2008/10/regex-0_9_6/feed/" rel="self" type="application/rss+xml" />
	<link>http://larsolavtorvik.com/2008/10/regex-0_9_6/</link>
	<description>my developer blog...</description>
	<pubDate>Mon, 06 Feb 2012 14:36:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Ronnie</title>
		<link>http://larsolavtorvik.com/2008/10/regex-0_9_6/#comment-33257</link>
		<dc:creator>Ronnie</dc:creator>
		<pubDate>Mon, 24 Oct 2011 07:32:19 +0000</pubDate>
		<guid isPermaLink="false">http://larsolavtorvik.com/?p=18#comment-33257</guid>
		<description>I also love to use this tool, it makes regular expressions less hard.

I can confirm what DaveDisaster said about the quotes in the js version.

I also noticed a small other problem:
Pattern: "&#60;meta charset="(.*?)"/&#62;"
Replacement: "&#60;meta http-equiv="Content-Type" content="text/html; charset=$1" /&#62;"
Subject: "&#60;head&#62;&#60;meta charset="utf-8"/&#62;&#60;title&#62;"

The tool detects the pattern in the string, but the replacement is not visible. When i remove the first “&#60;” in the replacement sting it works as it should.

When i use the &#60; in real javascript it works.

I see wordpress is filtering the HTML input so i replaced them with &#60; and &#62;</description>
		<content:encoded><![CDATA[<p>I also love to use this tool, it makes regular expressions less hard.</p>
<p>I can confirm what DaveDisaster said about the quotes in the js version.</p>
<p>I also noticed a small other problem:<br />
Pattern: &#8220;&lt;meta charset=&#8221;(.*?)&#8221;/&gt;&#8221;<br />
Replacement: &#8220;&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=$1&#8243; /&gt;&#8221;<br />
Subject: &#8220;&lt;head&gt;&lt;meta charset=&#8221;utf-8&#8243;/&gt;&lt;title&gt;&#8221;</p>
<p>The tool detects the pattern in the string, but the replacement is not visible. When i remove the first “&lt;” in the replacement sting it works as it should.</p>
<p>When i use the &lt; in real javascript it works.</p>
<p>I see wordpress is filtering the HTML input so i replaced them with &lt; and &gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronnie</title>
		<link>http://larsolavtorvik.com/2008/10/regex-0_9_6/#comment-33256</link>
		<dc:creator>Ronnie</dc:creator>
		<pubDate>Mon, 24 Oct 2011 07:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://larsolavtorvik.com/?p=18#comment-33256</guid>
		<description>I also love to use this tool, it makes regular expressions less hard.

I can confirm what DaveDisaster said about the quotes in the js version.

I also noticed a small other problem:
Pattern: 
Replacement: 
Subject: 

The tool detects the pattern in the string, but the replacement is not visible. When i remove the first "&#60;" in the replacement sting it works as it should.

When i use the &#60; in real javascript it works.</description>
		<content:encoded><![CDATA[<p>I also love to use this tool, it makes regular expressions less hard.</p>
<p>I can confirm what DaveDisaster said about the quotes in the js version.</p>
<p>I also noticed a small other problem:<br />
Pattern:<br />
Replacement:<br />
Subject: </p>
<p>The tool detects the pattern in the string, but the replacement is not visible. When i remove the first &#8220;&lt;&#8221; in the replacement sting it works as it should.</p>
<p>When i use the &lt; in real javascript it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DaveDisaster</title>
		<link>http://larsolavtorvik.com/2008/10/regex-0_9_6/#comment-33254</link>
		<dc:creator>DaveDisaster</dc:creator>
		<pubDate>Wed, 19 Oct 2011 16:16:22 +0000</pubDate>
		<guid isPermaLink="false">http://larsolavtorvik.com/?p=18#comment-33254</guid>
		<description>I use your regex tool on a regular basis. Incredibly useful utility, so thanks for the update.

Seems to be a small issue with JavaScript code output for replace - the replacement string (or backref as the case may be) is not quoted, which will cause people problems if they copy/paste the code from your site.

Keep up the good work!</description>
		<content:encoded><![CDATA[<p>I use your regex tool on a regular basis. Incredibly useful utility, so thanks for the update.</p>
<p>Seems to be a small issue with JavaScript code output for replace - the replacement string (or backref as the case may be) is not quoted, which will cause people problems if they copy/paste the code from your site.</p>
<p>Keep up the good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damien</title>
		<link>http://larsolavtorvik.com/2008/10/regex-0_9_6/#comment-33253</link>
		<dc:creator>Damien</dc:creator>
		<pubDate>Tue, 18 Oct 2011 10:09:03 +0000</pubDate>
		<guid isPermaLink="false">http://larsolavtorvik.com/?p=18#comment-33253</guid>
		<description>Dear Lars,

Thanks for a very useful, well designed tool. I truly helped me out debugging a complex pcre. 

One suggestion for improvement, the generated php code does not properly escape the backslash "\" and the single quote "'". For example: pattern 'a+\\'b+' on subject string 'aaa\'bbb' is coded as preg_match('/'a+\\'b+'/', ''aaa\'bbb'', $result); but that code is not valid - it should be preg_match('/\\\'a+\\\\\'b+\\\'/', '\'aaa\\\'bbb\'', $result);</description>
		<content:encoded><![CDATA[<p>Dear Lars,</p>
<p>Thanks for a very useful, well designed tool. I truly helped me out debugging a complex pcre. </p>
<p>One suggestion for improvement, the generated php code does not properly escape the backslash &#8220;\&#8221; and the single quote &#8220;&#8216;&#8221;. For example: pattern &#8216;a+\\&#8217;b+&#8217; on subject string &#8216;aaa\&#8217;bbb&#8217; is coded as preg_match(&#8217;/'a+\\&#8217;b+&#8217;/', &#8221;aaa\&#8217;bbb&#8221;, $result); but that code is not valid - it should be preg_match(&#8217;/\\\&#8217;a+\\\\\&#8217;b+\\\&#8217;/', &#8216;\&#8217;aaa\\\&#8217;bbb\&#8221;, $result);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oxman</title>
		<link>http://larsolavtorvik.com/2008/10/regex-0_9_6/#comment-33251</link>
		<dc:creator>oxman</dc:creator>
		<pubDate>Wed, 28 Sep 2011 09:09:17 +0000</pubDate>
		<guid isPermaLink="false">http://larsolavtorvik.com/?p=18#comment-33251</guid>
		<description>Very nice one !</description>
		<content:encoded><![CDATA[<p>Very nice one !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zamus</title>
		<link>http://larsolavtorvik.com/2008/10/regex-0_9_6/#comment-33235</link>
		<dc:creator>Zamus</dc:creator>
		<pubDate>Mon, 11 Apr 2011 16:59:16 +0000</pubDate>
		<guid isPermaLink="false">http://larsolavtorvik.com/?p=18#comment-33235</guid>
		<description>Thanks for the regex tool.

add the following above the adword.

If you like this tool, click on the advertisers!

:D ;)</description>
		<content:encoded><![CDATA[<p>Thanks for the regex tool.</p>
<p>add the following above the adword.</p>
<p>If you like this tool, click on the advertisers!</p>
<p> <img src='http://larsolavtorvik.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> <img src='http://larsolavtorvik.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JCommelin</title>
		<link>http://larsolavtorvik.com/2008/10/regex-0_9_6/#comment-33234</link>
		<dc:creator>JCommelin</dc:creator>
		<pubDate>Sat, 05 Mar 2011 16:19:06 +0000</pubDate>
		<guid isPermaLink="false">http://larsolavtorvik.com/?p=18#comment-33234</guid>
		<description>Hi Lars,

Thanks for your very good regex tool.
I wondered, could you add functionality so I can choose my delimeters myself? At the moment you can only use the default '/' but that is not handy when prototyping a regex for pathnames. I would like to be able to change it to one of "@#$" for example.

JCommelin</description>
		<content:encoded><![CDATA[<p>Hi Lars,</p>
<p>Thanks for your very good regex tool.<br />
I wondered, could you add functionality so I can choose my delimeters myself? At the moment you can only use the default &#8216;/&#8217; but that is not handy when prototyping a regex for pathnames. I would like to be able to change it to one of &#8220;@#$&#8221; for example.</p>
<p>JCommelin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucian</title>
		<link>http://larsolavtorvik.com/2008/10/regex-0_9_6/#comment-33233</link>
		<dc:creator>Lucian</dc:creator>
		<pubDate>Sat, 19 Feb 2011 13:27:50 +0000</pubDate>
		<guid isPermaLink="false">http://larsolavtorvik.com/?p=18#comment-33233</guid>
		<description>Hi,

I am learning how to use the regular expressions (I program in PHP) and looking for a testing tool, I must say yours was the best out of the 3 I tested (the first 3 results in google). So, let me congratulate you for your work!
There are anyway, some improvements (not bugs) that I can suggest you:
- it is sometimes useful to see the error message (only when you get an error, not always!), eventually in the place where the "result" usually is placed.
- the "Help PHP PCRE" is very long. I suggest you to place the symbol and the description on the same row, eventually with different colors, (like http://www.pagecolumn .com/tool/pregtest.htm).

Thanks again for doing it and for not filling it with annoying banners!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am learning how to use the regular expressions (I program in PHP) and looking for a testing tool, I must say yours was the best out of the 3 I tested (the first 3 results in google). So, let me congratulate you for your work!<br />
There are anyway, some improvements (not bugs) that I can suggest you:<br />
- it is sometimes useful to see the error message (only when you get an error, not always!), eventually in the place where the &#8220;result&#8221; usually is placed.<br />
- the &#8220;Help PHP PCRE&#8221; is very long. I suggest you to place the symbol and the description on the same row, eventually with different colors, (like <a href="http://www.pagecolumn" rel="nofollow">http://www.pagecolumn</a> .com/tool/pregtest.htm).</p>
<p>Thanks again for doing it and for not filling it with annoying banners!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gark87</title>
		<link>http://larsolavtorvik.com/2008/10/regex-0_9_6/#comment-33231</link>
		<dc:creator>gark87</dc:creator>
		<pubDate>Wed, 09 Feb 2011 03:07:52 +0000</pubDate>
		<guid isPermaLink="false">http://larsolavtorvik.com/?p=18#comment-33231</guid>
		<description>This is strange behavior of highlighter with following parameters:

PHP PCRE
preg_match_all

Pattern (start and end slashes will be added when needed):
a+b*
Subject:
azab

it highlights in Matches _a_z_a_b, but shouldn't it be _a_z_ab_?
Result looks right: (a, ab).</description>
		<content:encoded><![CDATA[<p>This is strange behavior of highlighter with following parameters:</p>
<p>PHP PCRE<br />
preg_match_all</p>
<p>Pattern (start and end slashes will be added when needed):<br />
a+b*<br />
Subject:<br />
azab</p>
<p>it highlights in Matches _a_z_a_b, but shouldn&#8217;t it be _a_z_ab_?<br />
Result looks right: (a, ab).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacob Christiansen</title>
		<link>http://larsolavtorvik.com/2008/10/regex-0_9_6/#comment-33230</link>
		<dc:creator>Jacob Christiansen</dc:creator>
		<pubDate>Thu, 03 Feb 2011 13:15:44 +0000</pubDate>
		<guid isPermaLink="false">http://larsolavtorvik.com/?p=18#comment-33230</guid>
		<description>Great tool. Great for developing regexps. Use it all the time. Keep up the good work.</description>
		<content:encoded><![CDATA[<p>Great tool. Great for developing regexps. Use it all the time. Keep up the good work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
 
