功能:Split 函數可返回基於 0 的一維數組,其中包含指定數目的子字符串
語法:
Split(expression[,delimiter[,count[,compare]]])
參數:
可選項。指示在計算子字符串時使用的比較類型的數值。
可以在下面這些值中選擇一個:
0 = vbBinaryCompare - 執行二進制比較
1 = vbTextCompare - 執行文本比較。
舉例:
dim txt,a1
txt="a,b,c,d,e,f"
a1=split(txt,",")
for i=0 to ubound(a1) 'ubound函數用來得到數組的總個數
response.write a1(i)&"<br>" '輸出第i個數組中的字符串
next
最後輸出的結果是:
a
b
c
d
e
f