VBScript Asc 函数

2022-08-19 10:32 更新

VBScript Asc 函数可以返回字符串首字母的 ANSI 字符代码。


VBScript 参考手册完整的 VBScript 参考手册

Asc 函数把字符串中的第一个字母转换为对应的 ANSI 代码,并返回结果。

语法

Asc(string)

参数

参数 描述
string 必需。字符串表达式。不能为空字符串!

实例

实例 1

<script type="text/vbscript">

document.write(Asc("A") & "<br />")
document.write(Asc("a") & "<br />")
document.write(Asc("F") & "<br />")
document.write(Asc("f") & "<br />")
document.write(Asc("2") & "<br />")
document.write(Asc("#") & "<br />")

</script>

以上实例输出结果:

65
97
70
102
50
35

尝试一下 »

实例 2

Asc 返回字符串中第一个字符的 ANSI 代码:

<script type="text/vbscript">

document.write(Asc("W") & "<br />")
document.write(Asc("W3CSchool.com"))

</script>

以上实例输出结果:

87
87

尝试一下 »

实例 3

如何返回字符串中所有字符的 ANSI 代码:

<script type="text/vbscript">

txt="W3Cschools.com"
for i=1 to len(txt)
document.write(Asc(mid(txt,i,1)) & "<br />")
next

</script>

以上实例输出结果:

87
51
115
99
104
111
111
108
115
46
99
111
109

尝试一下 »

VBScript 参考手册完整的 VBScript 参考手册
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号