控制输出字符串的长度,可以区别中英文(ASP)

博客给出了ASP中两个函数的代码。strlen函数用于计算字符串长度,会区分中英文;strvalue函数用于按指定长度截取字符串,若超长则添加省略号。还给出了示例及原文地址。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

strvalue("复请Email通知如果不填写则取注册Email",26)
这里26是指26个英文字母,也就是13个汉字


function strlen(str)
    dim p_len, xx
    p_len=0
    strlen=0
    if trim(str)<>"" then
        p_len=len(trim(str))
        for xx=1 to p_len
            if asc(mid(str,xx,1))<0 then
                strlen=int(strlen) + 2
            else
                strlen=int(strlen) + 1
            end if
        next
    end if
end function

function strvalue(str,lennum)
    dim p_num, x 
    dim i
    if strlen(str)<=lennum then
        strvalue=str
    else
        p_num=0
        x=0
        do while not p_num > lennum-2
            x=x+1
            if asc(mid(str,x,1))<0 then
                p_num=int(p_num) + 2
            else
                p_num=int(p_num) + 1
            end if
            strvalue=left(trim(str),x)&"…"
        loop
    end if
end function

原文地址: http://7i24.com/asp/103260940232.htm
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值