<?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: Regular Expressions for NSString</title>
	<atom:link href="http://www.stiefels.net/2007/01/24/regular-expressions-for-nsstring/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stiefels.net/2007/01/24/regular-expressions-for-nsstring/</link>
	<description>it's all about zeros and ones</description>
	<pubDate>Sat, 26 Jul 2008 03:03:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Byron</title>
		<link>http://www.stiefels.net/2007/01/24/regular-expressions-for-nsstring/#comment-3783</link>
		<dc:creator>Byron</dc:creator>
		<pubDate>Fri, 11 Jan 2008 18:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.stiefels.net/2007/01/25/regular-expressions-for-nsstring/#comment-3783</guid>
		<description>&lt;p&gt;I am really glad I bumped into this page while looking to support regex in my app. Now I don't have to link and manage yet another 3rd party framework.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I am really glad I bumped into this page while looking to support regex in my app. Now I don&#8217;t have to link and manage yet another 3rd party framework.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Viktor</title>
		<link>http://www.stiefels.net/2007/01/24/regular-expressions-for-nsstring/#comment-3782</link>
		<dc:creator>Viktor</dc:creator>
		<pubDate>Wed, 09 Jan 2008 01:00:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.stiefels.net/2007/01/25/regular-expressions-for-nsstring/#comment-3782</guid>
		<description>&lt;p&gt;The backspace in the metacharacters (like in "&#92;d" for a number) has to be escaped in the @"..." string. Confusing if you aren't used to that.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>The backspace in the metacharacters (like in &#8220;&#92;d&#8221; for a number) has to be escaped in the @&#8221;&#8230;&#8221; string. Confusing if you aren&#8217;t used to that.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.stiefels.net/2007/01/24/regular-expressions-for-nsstring/#comment-27</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 27 Feb 2007 20:19:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.stiefels.net/2007/01/25/regular-expressions-for-nsstring/#comment-27</guid>
		<description>&lt;p&gt;It appears that my problem is with multi line matching, rather than text encoding.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>It appears that my problem is with multi line matching, rather than text encoding.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://www.stiefels.net/2007/01/24/regular-expressions-for-nsstring/#comment-18</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Sun, 18 Feb 2007 19:29:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.stiefels.net/2007/01/25/regular-expressions-for-nsstring/#comment-18</guid>
		<description>&lt;p&gt;@Daniel: Give it a try using the same encoding (which one shouldn't matter) for both your string AND your regular expression.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@Daniel: Give it a try using the same encoding (which one shouldn&#8217;t matter) for both your string AND your regular expression.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.stiefels.net/2007/01/24/regular-expressions-for-nsstring/#comment-17</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Sun, 18 Feb 2007 01:46:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.stiefels.net/2007/01/25/regular-expressions-for-nsstring/#comment-17</guid>
		<description>&lt;p&gt;I am new to cocoa programming, and I have this very useful.&lt;/p&gt;

&lt;p&gt;However when I try to use a NSString from another source, ie a file, it no longer matches.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;NSString *taskOutput;
taskOutput = [[NSString alloc] initWithData: data encoding:NSUTF8StringEncoding];
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I believe this an encoding problem, but am at a loss as to what encoding to use.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I am new to cocoa programming, and I have this very useful.</p>

<p>However when I try to use a NSString from another source, ie a file, it no longer matches.</p>

<pre><code>NSString *taskOutput;
taskOutput = [[NSString alloc] initWithData: data encoding:NSUTF8StringEncoding];
</code></pre>

<p>I believe this an encoding problem, but am at a loss as to what encoding to use.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Rix</title>
		<link>http://www.stiefels.net/2007/01/24/regular-expressions-for-nsstring/#comment-15</link>
		<dc:creator>Rob Rix</dc:creator>
		<pubDate>Sat, 17 Feb 2007 12:55:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.stiefels.net/2007/01/25/regular-expressions-for-nsstring/#comment-15</guid>
		<description>&lt;p&gt;Obvious in hindsight-- many thanks for the cue.&lt;/p&gt;

&lt;p&gt;For the interested, the Predicate Programming Guide states here:&lt;/p&gt;

&lt;p&gt;file:///Developer/ADC%20Reference%20Library/documentation/Cocoa/Conceptual/Predicates/index.html#//apple_ref/doc/uid/TP40001789&lt;/p&gt;

&lt;p&gt;that the regexp format is as declared here:&lt;/p&gt;

&lt;p&gt;http://icu.sourceforge.net/userguide/regexp.html&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Obvious in hindsight&#8211; many thanks for the cue.</p>

<p>For the interested, the Predicate Programming Guide states here:</p>

<p>file:///Developer/ADC%20Reference%20Library/documentation/Cocoa/Conceptual/Predicates/index.html#//apple_ref/doc/uid/TP40001789</p>

<p>that the regexp format is as declared here:</p>

<p><a href="http://icu.sourceforge.net/userguide/regexp.html" rel="nofollow">http://icu.sourceforge.net/userguide/regexp.html</a></p>]]></content:encoded>
	</item>
</channel>
</rss>
