<?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>webinfinite.com &#187; explode</title>
	<atom:link href="http://webinfinite.com/tag/explode/feed/" rel="self" type="application/rss+xml" />
	<link>http://webinfinite.com</link>
	<description></description>
	<lastBuildDate>Fri, 18 Jun 2010 16:26:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How do I explode/implode a string in asp.net</title>
		<link>http://webinfinite.com/php/how-do-explodeimplode-a-string-in-aspnet/</link>
		<comments>http://webinfinite.com/php/how-do-explodeimplode-a-string-in-aspnet/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 23:04:39 +0000</pubDate>
		<dc:creator>webinfinite</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[explode]]></category>
		<category><![CDATA[implode]]></category>

		<guid isPermaLink="false">http://webinfinite.com/?p=92</guid>
		<description><![CDATA[So you want to separate your string using explode or join your string using implode in vb.net? Explode/implode are functions of the php environment and do not exist in asp.net therefore you must use the split() function to get your results for explode and join() for implode. Split() Example mystring = &#8220;hello;sir;how are you&#8221;; arrayData=mystring.Split(mystring,&#8221;;&#8221;) [...]]]></description>
			<content:encoded><![CDATA[<p>So you want to separate your string using explode or join your string using implode in vb.net? Explode/implode are functions of the php environment and do not exist in asp.net therefore you must use the split() function to get your results for explode and join() for implode.</p>
<p><span style="text-decoration: underline;"><strong>Split()</strong><strong> Example</strong></span></p>
<p>mystring = &#8220;hello;sir;how are you&#8221;;</p>
<div id="EchoTopic" class="answerBody quoted">arrayData=mystring.Split(mystring<a class="tfTextLink" style="border-bottom: 1px solid #f78200; color: #f78200; text-decoration: underline; display: inline; background-color: transparent; font-size: 1em; padding-bottom: 1px; position: relative; line-height: 1em;" href="javascript:void(0)"></a>,&#8221;;&#8221;)</div>
<div class="answerBody quoted"><strong><br />
Result</strong></div>
<div class="answerBody quoted">arrayData(0) would equal &#8220;hello&#8221;</div>
<div class="answerBody quoted">arrayData(1) would equal &#8220;sir&#8221;</div>
<div class="answerBody quoted">arrayDate(2) would equal &#8220;how are you&#8221;</div>
<div class="answerBody quoted">
<p><span style="text-decoration: underline;"><strong>Join()</strong><strong> Example</strong></span></div>
<p><code>Dim JoinArray(3)</code></p>
<p><code>JoinArray(0) = "Welcome"<br />
JoinArray(1) = "to"<br />
JoinArray(2) = "Web Infinite"</code><code><br />
</code></p>
<p><code>Dim strSentence as String<br />
strSentence = join(JoinArray) </code></p>
<p><strong>Result</strong><br />
<code>strSentence would equal</code> to &#8220;Welcome to Web Infinite&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://webinfinite.com/php/how-do-explodeimplode-a-string-in-aspnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
