VBScript – Numbers

Number functions help the developers to handle numbers in an efficient way and also helps them to convert their subtypes. It also helps them to make use of the inbuilt mathematical functions associated with VBScript.

Number Conversion Functions

Number functions help us to convert a given number from one data subtype to another data subtype.

Show Examples

Sr.NoFunction & Description
1CDblA Function, which converts a given number of any variant subtype to double
2CIntA Function, which converts a given number of any variant subtype to Integer
3CLngA Function, which converts a given number of any variant subtype to Long
4CSngA Function, which converts a given number of any variant subtype to Single
5HexA Function, which converts a given number of any variant subtype to Hexadecimal

Number Formatting Functions

The Number formatting functions help the developers to express the given number in a format that they wish to.

Show Examples

Sr.NoFunction & Description
1FormatNumberA Function, which would return an expression formatted as a number
2FormatPercentA Function, which would return an expression formatted as a percentage

Mathematical Functions

Mathematical Functions help us to evaluate the mathematical and trigonometrical functions of a given input number.

Show Examples

Sr.NoFunction & Description
1IntA Function, which returns the integer part of the given number
2FixA Function, which returns the integer part of the given number
3LogA Function, which returns the natural logarithm of the given number. Negative numbers disallowed
4OctA Function, which returns the Octal value of the given percentage
5HexA Function, which returns the Hexadecimal value of the given number
6RndA Function, which returns a random number between 0 and 1
7SgnA Function, which returns a number corresponding to the sign of the specified number
8SqrA Function, which returns the square root of the given number. Negative numbers disallowed
9AbsA Function, which returns the absolute value of the given number
10ExpA Function, which returns the value of e raised to the specified number
11SinA Function, which returns sine value of the given number
12CosA Function, which returns cosine value of the given number
13TanA Function, which returns tan value of the given number

Leave a Reply