发布网友 发布时间:2024-10-24 13:33
共2个回答
热心网友 时间:2024-10-28 12:31
Dim Str
Str="mynameis"
For I = 1 To Len(Str)
Response.Write Mid(Str,I,1) &"<br>"
Next
热心网友 时间:2024-10-28 12:31
<%
a="helloworld!"
for i=1 to len(a)
b=mid(a,i,1)
response.Write b&","
next
%>