当前位置:编程学习 > asp >>

求ASP版的String.fromCharCode函数

求ASP版的String.fromCharCode函数,

可以将下面的转换过来,谢谢了。

String.fromCharCode(50,48,49,49,45,56,47,48,56,50,50,45,119,48,48,51,46,109,112,51)

答案:好像没有完全一样的,但是可以自己写一个函数,ASP VBScript 代码:

function fromcharcode(str)
 tempstr=split(str,",")
 newstr=""
 for i=0 to Ubound(tempstr) step 1
  if IsNumeric(tempstr(i)) then
   newstr=newstr&chr(tempstr(i))
  end if
 next
 fromcharcode=newstr
end function

调用方法:

fromCharCode("50,48,49,49,45,56,47,48,56,50,50,45,119,48,48,51,46,109,112,51")

上一个:ASP判断整数负数和0代码
下一个:ASP将数据导出为EXECL文件的方法

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,