str="1哈/2哈/3哈/4哈/5哈/6哈"
arra=split(str,"/")
arrn=ubound(split(str,"/")
for i=0 to arrn
reponse.write arra(i)&"<br>"
next
显示的结果
1哈
2哈
3哈
4哈
5哈
6哈
arra=split(str,"/")
arrn=ubound(split(str,"/")
for i=0 to arrn
reponse.write arra(i)&"<br>"
next
显示的结果
1哈
2哈
3哈
4哈
5哈
6哈