学习split的用法及与asp的结合使用
时间:2011-01-19 来源:ayan2006
split()是个数组的概念
str="12|13|14"
sa=split(str,"|")
response.write sa(0)
response.write sa(1)
response.write sa(3)
楼主可以测试下sa(0)、sa(1)、sa(2)、sa(3)、sa(4)、sa(5)分别输出是什么。这样就对它有概念了。
kemu=rs(0)
dim myStr,myCount
myCount=1
if instr(kemu,",")>0 then kemu=split(kemu,",")
if ubound(kemu)>0 then
for i=0 to ubound(kemu)
if kemu(i)=4 then ' 这里就是的条件,就是满足条件的就显示在title里面
myStr=myStr&","&kemu(i)
myCount=myCount+1
if myCount>3 then exit for
end if
next
end if '此处缺少endif
if left(myStr,1)="," then myStr=right(myStr,len(myStr)-1)
%>
if (aaa) then ssxx 这样的可以缺省end if
if (aaa) then
xxfdf
的不能缺省end if,必须写上去的。楼主可能是没注意到这个细节。谢谢!
回复一楼,rs(0) 指的是读取数据库的第一个字段,比如
select id,name,title,content from news 这条sql语句
平时大家用的时候,可能是 rs("id"),rs("name")...的
但是也可以rs(0),rs(1),rs(2)。。。这样!
str="12|13|14"
sa=split(str,"|")
response.write sa(0)
response.write sa(1)
response.write sa(3)
楼主可以测试下sa(0)、sa(1)、sa(2)、sa(3)、sa(4)、sa(5)分别输出是什么。这样就对它有概念了。
====================================================
<%
dim str,sa
str="12|13|14|15|16"
sa=split(str,"|")
for x=0 to ubound(sa)
response.write sa(x)&"<br />"
next
%>
===================================================
<%kemu=rs(0)
dim myStr,myCount
myCount=1
if instr(kemu,",")>0 then kemu=split(kemu,",")
if ubound(kemu)>0 then
for i=0 to ubound(kemu)
if kemu(i)=4 then ' 这里就是的条件,就是满足条件的就显示在title里面
myStr=myStr&","&kemu(i)
myCount=myCount+1
if myCount>3 then exit for
end if
next
end if '此处缺少endif
if left(myStr,1)="," then myStr=right(myStr,len(myStr)-1)
%>
if (aaa) then ssxx 这样的可以缺省end if
if (aaa) then
xxfdf
的不能缺省end if,必须写上去的。楼主可能是没注意到这个细节。谢谢!
回复一楼,rs(0) 指的是读取数据库的第一个字段,比如
select id,name,title,content from news 这条sql语句
平时大家用的时候,可能是 rs("id"),rs("name")...的
但是也可以rs(0),rs(1),rs(2)。。。这样!
相关阅读 更多 +