亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        ASP字?jǐn)?shù)計(jì)算函數(shù)

        字號:


            <%
            'ASP字?jǐn)?shù)計(jì)算函數(shù)
            Function WordCount(strInput)
            Dim strTemp
            strTemp = Replace(strInput, vbTab, " ")
            strTemp = Replace(strTemp, vbCr, " ")
            strTemp = Replace(strTemp, vbLf, " ")
            ' 刪除字首字尾空格
            strTemp = Trim(strTemp)
            ' 替換為一個(gè)空格
            Do While InStr(1, strTemp, " ", 1) <> 0
            strTemp = Replace(strTemp, " ", " ")
            Loop
            WordCount = UBound(Split(strTemp, " ", -1, 1)) +1
            End Function
            %>