<%
strC10 = ""&c10&""
aryReturn = Split(strC10," ")For e = LBound(aryReturn) To UBound(aryReturn)
    Response.Write(Right(aryReturn(e),Len(aryReturn(e))) & "<br>")
Next
%>上面的方法可以解决Sood   Dood  Food显示结果为:Sood   
Dood  
Food
但如果后面还有部分含有数字的 不让他换行 请问怎么解决  如Sood  40   Dood  60  Food要求显示为:
Sood  40   
Dood  60  
Food请问怎么解决 谢谢

解决方案 »

  1.   

    \s+(?=[a-zA-Z]+)
      

  2.   

    不太懂JS 能在原代码的基础上帮改下吗?<%
    strC10 = ""&c10&""
    aryReturn = Split(strC10," ")For e = LBound(aryReturn) To UBound(aryReturn)
        Response.Write(Right(aryReturn(e),Len(aryReturn(e))) & "<br>")
    Next
    %>
      

  3.   

    不太懂JS 能在原代码的基础上帮改下吗?<%
    strC10 = ""&c10&""
    aryReturn = Split(strC10," ")For e = LBound(aryReturn) To UBound(aryReturn)
        Response.Write(Right(aryReturn(e),Len(aryReturn(e))) & "<br>")
    Next
    %>
      

  4.   


    不太懂JS 能在原代码的基础上帮改下吗?<%
    strC10 = ""&c10&""
    aryReturn = Split(strC10," ")For e = LBound(aryReturn) To UBound(aryReturn)
        Response.Write(Right(aryReturn(e),Len(aryReturn(e))) & "<br>")
    Next
    %>