You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
299 B
Plaintext

<%
Dim strText , arrText , intCount
'sample string with commas in it
strText = "This,is,our,sample,string"
'split the string and store in arrText
arrText = Split(strText,",")
'display all items
For intCount = 0 to UBound(arrText)
Response.Write arrText(intCount) & "<br>"
Next
%>