<?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>Tue, 22 Mar 2011 21:00:52 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Eric</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2488</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Fri, 04 Mar 2011 18:26:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2488</guid>
		<description>It&#039;s his blog, jeez.</description>
		<content:encoded><![CDATA[<p>It&#8217;s his blog, jeez.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: creatorbri</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2485</link>
		<dc:creator>creatorbri</dc:creator>
		<pubDate>Wed, 02 Mar 2011 17:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2485</guid>
		<description>Is it worth commenting months after the fact?</description>
		<content:encoded><![CDATA[<p>Is it worth commenting months after the fact?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ergec</title>
		<link>http://www.crainbandy.com/programming/function-to-remove-all-non-numeric-characters-in-php/comment-page-1#comment-2466</link>
		<dc:creator>ergec</dc:creator>
		<pubDate>Fri, 14 Jan 2011 07:44:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=894#comment-2466</guid>
		<description>In case you are looking for something to convert amount with currency &quot;$50.5&quot; to only amount without currency &quot;50.5&quot;

function convertMoney($string) {
return preg_replace(&#039;/[^0-9\.]/Uis&#039;, &#039;&#039;, $string);
}</description>
		<content:encoded><![CDATA[<p>In case you are looking for something to convert amount with currency &#8220;$50.5&#8243; to only amount without currency &#8220;50.5&#8243;</p>
<p>function convertMoney($string) {<br />
return preg_replace(&#8217;/[^0-9\.]/Uis&#8217;, &#8221;, $string);<br />
}</p>
]]></content:encoded>
	</item>
	<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>
</channel>
</rss>

