<SCRIPT LANGUAGE="vbScript">
dim str,i,a
str="00003456780003485"
for i=1 to len(str)
a=mid(str,i,1)
if a<>"0" then
document.write(a)
exit for
end if
next
</SCRIPT>
<%rs.movefirst%>
<%do while not rs.eof%>
<%if rs("t122700000") > 0 then
aa = rs("t122700000")
end if%>
<td <%=rs("t122700000")%></td>
<%rs.movenext
loop%>
这样查出来的是最后一个>0的数,那第一个>0的数怎么找?