Asc: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
m (Add JavaScript version of VBScript)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.''
Asc(''string'')
Asc(''string'')


Line 10: Line 12:
Rem Asc Example
Rem Asc Example
'Asc returns an ANSI character code
'Asc returns an ANSI character code
Dim CapitalA, LowerB
Dim CapitalA, LowerB
CapitalA = Asc("A is for Apple")
CapitalA = Asc("A is for Apple")
Line 15: Line 18:
LowerB = Asc("b")
LowerB = Asc("b")
Print "Character code for b = " & LowerB
Print "Character code for b = " & LowerB
</pre>
== Example (JavaScript) ==
<pre>
//Asc Example
//Asc returns an ANSI character code
var CapitalA, LowerB;
CapitalA = Asc("A is for Apple");
NSB.Print("Character code for A = " + CapitalA + "<br>");
LowerB = Asc("b");
NSB.Print("Character code for b = " + LowerB + "<br>");
</pre>
</pre>


Line 42: Line 34:


[[Category:Strings]]
[[Category:Strings]]
[[Category:BASIC Functions]]

Latest revision as of 15:17, 25 March 2019

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

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 (BASIC)

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