VBScript Asc Function
Complete VBScript Reference
The Asc function converts the first letter in a string to ANSI code, and returns the result.
Syntax
| Parameter |
Description |
| string |
Required. A string
expression. Cannot be an empty string! |
Example 1
document.write(Asc("A") & "<br />")
document.write(Asc("F"))
Output:
65
70
|
Example 2
document.write(Asc("a") & "<br />")
document.write(Asc("f"))
Output:
97
102
|
Example 3
document.write(Asc("W") & "<br />")
document.write(Asc("W3Schools.com"))
Output:
87
87
|
Example 4
document.write(Asc("2") & "<br />")
document.write(Asc("#"))
Output:
50
35
|
Complete VBScript Reference

Whether you're new to XML or already an advanced user,
the user-friendly views and powerful entry helpers,
wizards, and debuggers in XMLSpy are designed to meet your XML
and Web development needs from start to finish.
New features in Version 2010!
- XML editor
- Graphical XML Schema / DTD editors
- XSLT 1.0/2.0 editor, debugger, profiler
- XQuery editor, debugger, profiler
- XBRL validator, taxonomy editor, taxonomy wizard
- Support for Office Open XML (OOXML)
- Graphical WSDL 1.1/2.0 editor & SOAP debugger
- JSON editing & conversion
- Java, C#, C++ code generation
- And much more!
Download a free trial today!
|
|
|
|