<%
str1="hello,spell,i,love,you"
aa= split(str1,",")'这里已经生成了一个数组aa,aa的内容是从str1中以‘,’为分格出来的!
for i=0 to Ubound(aa)'开始去的各个ID,i 是下标
response.write(aa(i)&" ")
next
%>
split 函数的应用
阅读 78
2022-07-27
<%
str1="hello,spell,i,love,you"
aa= split(str1,",")'这里已经生成了一个数组aa,aa的内容是从str1中以‘,’为分格出来的!
for i=0 to Ubound(aa)'开始去的各个ID,i 是下标
response.write(aa(i)&" ")
next
%>
相关推荐
精彩评论(0)