src/helpers/visualBasic.ts/visualBasic.ts
Contains the procedures used to perform various conversion operations.
Methods |
|
Static int | ||||||||
int(number: number)
|
||||||||
Returns the integer portion of a number.
Parameters :
Returns :
any
The integer portion of a number. |
Static isCharInStringACorrectNumber | ||||||||||||
isCharInStringACorrectNumber(char: string, string: string)
|
||||||||||||
Determines if a character within a string corresponds to a number or a point.
Parameters :
Returns :
boolean
True if a character within a string corresponds to a number or a point. |
Static isStringNullOrEmpty | ||||||||
isStringNullOrEmpty(string: string)
|
||||||||
Determines if a string is null or empty.
Parameters :
Returns :
boolean
True if the string is null or empty. |
Static str | ||||||||
str(number: any)
|
||||||||
Returns a String representation of a number.
Parameters :
Returns :
string
A String representation of a number. |
Static val | ||||||||
val(inputStr: string)
|
||||||||
Returns the numbers contained in a string as a numeric value of appropriate type.
Parameters :
Returns :
number
The numbers contained in a string as a numeric value of appropriate type. |