28,409
社区成员




<%
Dim s,i,a,j
s = "1000100110021003"
For i=1 To Len(s) Step 4
a = a & Mid(s,i,4) & ","
Next
If a <> "" Then a = Left(a, Len(a)-1)
a = Split(a, ",")
For i = 0 To UBound(a)
For j=0 To i
Response.Write a(j) & " "
Next
Response.Write "<br>"
Next
%>
<%
dim str,i,a
str="1000100110021003"
for i=1 to len(str) step 4
a=a&mid(str,i,4)&" "
response.write a&"<br>"
next
%>
<%
dim str,i,a
str="1000100110021003"
for i=1 to len(str) step 4
a=a&mid(str,i,4)&","
next
response.write left(a,len(a)-1)
%>