AscA Function | |
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
public static uint AscA(
string cString
)
Request Example
View SourceParameters
- 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():
1? Asc("A")
2? Asc("Apple")
3? Asc("a")
4? Asc("Z") - Asc("A")
5? Asc(NULL_STRING)
6? Asc(Chr(0))
See Also