Click or drag to resize

AscA Function

X#
Convert a character to its ASCII value.

Namespace:  XSharp.Core
Assembly:  XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax
 FUNCTION AscA(
	cString AS STRING
) AS DWORD
Request Example View Source

Parameters

cString
Type: String
The character to convert to a number.

Return Value

Type: DWord
A number from 0 to 255, representing the ASCII code of cString.
Remarks
Asc() is a character conversion function that returns the ASCII value of the leftmost character in a string.
Asc() is used primarily on expressions requiring numeric calculations on the ASCII value of a character. Chr() and Asc() are inverse functions.
Remarks
AscA() always uses the current Ansi codepage, and ignores the setting of SetAnsi()
Examples
These examples illustrate various results of Asc():
X#
1? Asc("A")                // 65
2? Asc("Apple")                // 65
3? Asc("a")                    // 97
4? Asc("Z") - Asc("A")        // 25
5? Asc(NULL_STRING)            // 0
6? Asc(Chr(0))                // 0
See Also