<?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: Function to remove all non-numeric characters in PHP</title>
	<atom:link href="http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php</link>
	<description>For Web Developers</description>
	<lastBuildDate>Sun, 18 Jul 2010 21:01:27 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mr Incredible</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2372</link>
		<dc:creator>Mr Incredible</dc:creator>
		<pubDate>Thu, 27 May 2010 14:45:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2372</guid>
		<description>It was a rather short post but handy. Imparting any knowledge shouldn&#039;t be criticized. 

Paulius, you wouldn&#039;t be here if you didn&#039;t need to know about it right?</description>
		<content:encoded><![CDATA[<p>It was a rather short post but handy. Imparting any knowledge shouldn&#8217;t be criticized. </p>
<p>Paulius, you wouldn&#8217;t be here if you didn&#8217;t need to know about it right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fishing</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2354</link>
		<dc:creator>Fishing</dc:creator>
		<pubDate>Thu, 13 May 2010 10:03:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2354</guid>
		<description>Yes it absolutely was. I&#039;m sending out text message notifications for new fishing reports and have to strip non-numeric chars. Thanks!</description>
		<content:encoded><![CDATA[<p>Yes it absolutely was. I&#8217;m sending out text message notifications for new fishing reports and have to strip non-numeric chars. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bear</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2288</link>
		<dc:creator>bear</dc:creator>
		<pubDate>Mon, 07 Dec 2009 10:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2288</guid>
		<description>THK 4 this simple but useful.</description>
		<content:encoded><![CDATA[<p>THK 4 this simple but useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wefwef</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2281</link>
		<dc:creator>wefwef</dc:creator>
		<pubDate>Sun, 15 Nov 2009 00:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2281</guid>
		<description>Line 2 is missing a &quot;;&quot;. 

This is more readable I think:

preg_replace(&#039;/[^0-9]/Uis&#039;, &#039;&#039;, $string);

Cheers</description>
		<content:encoded><![CDATA[<p>Line 2 is missing a &#8220;;&#8221;. </p>
<p>This is more readable I think:</p>
<p>preg_replace(&#8217;/[^0-9]/Uis&#8217;, &#8221;, $string);</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bryan</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2280</link>
		<dc:creator>bryan</dc:creator>
		<pubDate>Sun, 15 Nov 2009 00:00:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2280</guid>
		<description>You&#039;re welcome.</description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2279</link>
		<dc:creator>James</dc:creator>
		<pubDate>Sat, 14 Nov 2009 04:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2279</guid>
		<description>Actually, it&#039;s worth it. Thank you for this.</description>
		<content:encoded><![CDATA[<p>Actually, it&#8217;s worth it. Thank you for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: donwilson</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2278</link>
		<dc:creator>donwilson</dc:creator>
		<pubDate>Fri, 13 Nov 2009 22:04:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2278</guid>
		<description>Is it worth an entire reply?</description>
		<content:encoded><![CDATA[<p>Is it worth an entire reply?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wes</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2277</link>
		<dc:creator>wes</dc:creator>
		<pubDate>Thu, 12 Nov 2009 08:57:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2277</guid>
		<description>The answer is yes.</description>
		<content:encoded><![CDATA[<p>The answer is yes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bryan</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2258</link>
		<dc:creator>bryan</dc:creator>
		<pubDate>Mon, 12 Oct 2009 19:33:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2258</guid>
		<description>Is it worth an entire comment?</description>
		<content:encoded><![CDATA[<p>Is it worth an entire comment?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paulius</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2254</link>
		<dc:creator>Paulius</dc:creator>
		<pubDate>Thu, 08 Oct 2009 07:46:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2254</guid>
		<description>Is it worth entire blog post?</description>
		<content:encoded><![CDATA[<p>Is it worth entire blog post?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
