首页 > 开发 > 综合 > 正文

VB 手机号码编码程序

2024-07-21 02:20:51
字体:
来源:转载
供稿:网友
  • 本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。
  • public function telc(num as string) as string

    dim tl as integer
    dim ltem, rtem, ttem as string
    dim ti as integer
    ttem = ""
    tl = len(num)
    if tl > 14 then
    num = mid(num, 1, 14)
    tl = 14
    end if

    if tl = 11 then
    tl = tl + 2
    num = "86" & num
    end if
    if tl mod 2 = 1 then
    tl = tl + 1
    num = num + "f"
    end if

    for ti = 1 to tl step 2
    ttem = ttem & mid(num, ti + 1, 1) & mid(num, ti, 1)
    next ti
    telc = ttem

    end function

    发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表