求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版的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文件的方法