使用多个分隔符
<%
str = "apple;banana,cherry:date"
sArray = Split(str, Array(";", ",", ":"))
For i = 0 To UBound(sArray)
Response.Write(sArray(i) & "<br>")
Next
%>转载请注明出处:http://www.yaxima.com/html/asp/310.html
<%
str = "apple;banana,cherry:date"
sArray = Split(str, Array(";", ",", ":"))
For i = 0 To UBound(sArray)
Response.Write(sArray(i) & "<br>")
Next
%>转载请注明出处:http://www.yaxima.com/html/asp/310.html