<%
str1="hello,spell,i,love,you"
aa= split(str1,",")'这里已经生成了一个数组aa,aa的内容是从str1中以‘,’为分格出来的!
for i=0 to Ubound(aa)'开始去的各个ID,i 是下标 ,ubound返回数组的数量
response.write(aa(i)&"<br>")
next
%>
<%
str1="hello,spell,i,love,you"
aa= split(str1,",")'这里已经生成了一个数组aa,aa的内容是从str1中以‘,’为分格出来的!
for i=0 to Ubound(aa)'开始去的各个ID,i 是下标 ,ubound返回数组的数量
response.write(aa(i)&"<br>")
next
%>
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。