首页 > 开发 > 综合 > 正文

二进制连接函数VBSCRIPT

2024-07-21 02:24:54
字体:
来源:转载
供稿:网友
  • 网站运营seo文章大全
  • 提供全面的站长运营经验及seo技术!

  • public function convertasc(strin)
     dim i
     convertasc = ""
     for i=1 to len(strin)
      dim c: c = asc(mid(strin, i, 1))
      if abs(c)<128 then
       convertasc = convertasc & chrb(c)
      else
       dim h: h = hex(c)
       convertasc = convertasc & chrb(int("&h" & mid(h, 1, 2)))
       convertasc = convertasc & chrb(int("&h" & mid(h, 3, 2)))
      end if
     next
    end function

    dim a: a = convertasc("hello world!")
    dim b: b = convertasc("世界你好!")

    response.binarywrite a + b
    发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表