Val() |
Previous Next |
Val(<Expression>)
|
Part
|
Description
|
<Expression>
|
Required. The string expression to convert to an integer or long.
|
a$ = "580"
b = Val(a$) + 2
Print b
|