asp实现二进制字符串转换为Unicode字符串
程序员文章站
2023-08-24 12:24:19
若需要utf-8格式,请自行将下面的gb2312改成utf-8。 ' 二进制转字符串,否则会出现乱码的! function stb(vin)...
若需要utf-8格式,请自行将下面的gb2312改成utf-8。
' 二进制转字符串,否则会出现乱码的!
function stb(vin)
const adtypetext = 2
dim bytesstream,stringreturn
set bytesstream = server.createobject("adodb.stream")
with bytesstream
.type = adtypetext
.open
.writetext vin
.position = 0
.charset = "gb2312"
.position = 2
stringreturn = .readtext
.close
end with
set bytesstream = nothing
stb = stringreturn
end function
' 二进制转字符串,否则会出现乱码的!
function stb(vin)
const adtypetext = 2
dim bytesstream,stringreturn
set bytesstream = server.createobject("adodb.stream")
with bytesstream
.type = adtypetext
.open
.writetext vin
.position = 0
.charset = "gb2312"
.position = 2
stringreturn = .readtext
.close
end with
set bytesstream = nothing
stb = stringreturn
end function
上一篇: 去除HTML代码中所有标签的两种方法
推荐阅读
-
C#实现将32位MD5摘要串转换为128位二进制字符串的方法
-
asp实现二进制字符串转换为Unicode字符串
-
C#实现将32位MD5摘要串转换为128位二进制字符串的方法
-
golang实现unicode转换为字符串string的方法
-
[那些年踩过的坑]pdf转换为图片的教程(pdf的Base64字符串转换为图片的base64字符串和不通过第三方来实现pdf转图片的Dome)
-
asp实现二进制字符串转换为Unicode字符串
-
golang实现unicode转换为字符串string的方法
-
[那些年踩过的坑]pdf转换为图片的教程(pdf的Base64字符串转换为图片的base64字符串和不通过第三方来实现pdf转图片的Dome)