Asc

From NSB App Studio
Revision as of 18:02, 24 August 2012 by Brendon (talk | contribs)
Jump to navigation Jump to search

Asc(string)

Description

Asc returns the ANSI character code of a character. The required parameter, string, is any valid string expression. If string is longer than one character, only the first character is used.

Example

Rem Asc Example
'Asc returns an ANSI character code
Dim CapitalA, LowerB
CapitalA = Asc("A is for Apple")
Print "Character code for A = " & CapitalA
LowerB = Asc("b")
Print "Character code for b = " & LowerB

Output

Character code for A = 65
Character code for b = 98

Related Items

Chr