Web

Funzione Split con Array

Dim valore = Split("UNO,DUE,TRE", ",")
Dim contatore As Integer = 0
Dim totale_array As Integer = valore.Length - 1
Response.Write("Indice ARRAY: " & valore.Length & ",")
For contatore = 0 To totale_array
Response.Write(" Valore ARRAY(" & contatore & ")=" & valore(contatore) & ",")
Next