程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> ASP技巧 >> Asp截字符串,漢字一個算兩個字符,英文算一個字符

Asp截字符串,漢字一個算兩個字符,英文算一個字符

編輯:ASP技巧
通常在顯示新聞標題的時候,有時候標題中會出現漢字和英文共存,直接用left截字符串會出現兩條新聞標題長度不一,使用這個函數可以解決這個問題。
<%
'**************************************************
'函數名:gotTopic
'作  用:截字符串,漢字一個算兩個字符,英文算一個字符
'參  數:str   ----原字符串
'       strlen ----截取長度
'返回值:截取後的字符串
'**************************************************
Function gotTopic(ByVal str, ByVal strlen)
    If str = "" Then
        gotTopic = ""
        Exit Function
    End If
    Dim l, t, c, i, strTemp
    str = Replace(Replace(Replace(Replace(str, " ", " "), """, Chr(34)), ">", ">"), "&#38;lt;", "<")
    l = Len(str)
    t = 0
    strTemp = str
    strlen = CLng(strlen)
    For i = 1 To l
        c = Abs(Asc(Mid(str, i, 1)))
        If c > 255 Then
            t = t + 2
        Else
            t = t + 1
        End If
        If t >= strlen Then
            strTemp = Left(str, i)
            Exit For
        End If
    Next
    If strTemp <> str Then
        strTemp = strTemp &#38; "…"
    End If
    gotTopic = Replace(Replace(Replace(Replace(strTemp, " ", " "), Chr(34), """), ">", ">"), "<", "&#38;lt;")
End Function
%>
 <%
 str="一共11111w有漢字"
 str1="一共有五漢字"
 response.write "gotTopic
"
 response.write gotTopic(str,10)&#38;"
"&#38;gotTopic(str1,10)&#38;"
"
 response.write "left
"
 response.write Left(str,5)&#38;"
"&#38;Left(str1,5)
 response.end
%>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved