<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Perplexed Labs &#187; split</title>
	<atom:link href="http://blog.perplexedlabs.com/tag/split/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.perplexedlabs.com</link>
	<description>web development war stories from the frontlines to the backend</description>
	<lastBuildDate>Sat, 24 Jul 2010 16:27:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>PHP RegEx for Newlines, Commas, Whitespace</title>
		<link>http://blog.perplexedlabs.com/2008/02/04/php-regular-expression-for-newlines-commas-whitespace/</link>
		<comments>http://blog.perplexedlabs.com/2008/02/04/php-regular-expression-for-newlines-commas-whitespace/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 15:51:02 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[explode]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[preg_split]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular expression]]></category>
		<category><![CDATA[split]]></category>
		<category><![CDATA[whitespace]]></category>

		<guid isPermaLink="false">http://perplexedlabs.com/2008/02/04/php-regular-expression-for-newlines-commas-whitespace/</guid>
		<description><![CDATA[The following line splits a string by any combination of whitespace (including newlines) and commas: &#60;?php $splitArray = preg_split(&#34;/[\s,]+/&#34;, $input); ?&#62; Related posts:PHP Dynamic JavaScript SCRIPT Insertion for Embedding


Related posts:<ol><li><a href='http://blog.perplexedlabs.com/2009/02/05/dynamic-javascript-script-insertion-for-embedding/' rel='bookmark' title='Permanent Link: PHP Dynamic JavaScript SCRIPT Insertion for Embedding'>PHP Dynamic JavaScript SCRIPT Insertion for Embedding</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The following line splits a string by any combination of whitespace (including newlines) and commas:</p>
<pre class="brush: php;">
&lt;?php
$splitArray = preg_split(&quot;/[\s,]+/&quot;, $input);
?&gt;
</pre>


<p>Related posts:<ol><li><a href='http://blog.perplexedlabs.com/2009/02/05/dynamic-javascript-script-insertion-for-embedding/' rel='bookmark' title='Permanent Link: PHP Dynamic JavaScript SCRIPT Insertion for Embedding'>PHP Dynamic JavaScript SCRIPT Insertion for Embedding</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.perplexedlabs.com/2008/02/04/php-regular-expression-for-newlines-commas-whitespace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
