<?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>ASPcenter.net &#187; asp split</title>
	<atom:link href="http://www.aspcenter.net/tag/asp-split/feed" rel="self" type="application/rss+xml" />
	<link>http://www.aspcenter.net</link>
	<description>Il blog degli sviluppatori ASP e .NET</description>
	<lastBuildDate>Mon, 08 Mar 2010 10:03:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>La funzione Split del VBScript: creare array da una stringa</title>
		<link>http://www.aspcenter.net/2010/03/funzione-split-vbscript-creare-array-stringa.html</link>
		<comments>http://www.aspcenter.net/2010/03/funzione-split-vbscript-creare-array-stringa.html#comments</comments>
		<pubDate>Mon, 01 Mar 2010 10:18:50 +0000</pubDate>
		<dc:creator>lukeonweb</dc:creator>
				<category><![CDATA[Gestione Stringhe]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[array di stringa]]></category>
		<category><![CDATA[array vbscript]]></category>
		<category><![CDATA[asp split]]></category>
		<category><![CDATA[funzione split]]></category>
		<category><![CDATA[splittare stringa]]></category>
		<category><![CDATA[vbscript split]]></category>

		<guid isPermaLink="false">http://www.aspcenter.net/?p=324</guid>
		<description><![CDATA[La funzione Split del VBScript serve a dividere una stringa in un array di stringa.
Prendiamo ad esempio la stringa:
Luca Ruggiero
e dividiamola in due stringhe:
Luca
e
Ruggiero
Useremo il seguente codice

&#60;%
    Dim arr_stringa
    arr_stringa = Split("Luca Ruggiero", " ")
    ' Restituisce il primo item (Luca)
    Response.Write arr_stringa(0)
 [...]]]></description>
		<wfw:commentRss>http://www.aspcenter.net/2010/03/funzione-split-vbscript-creare-array-stringa.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

