string intParse(string inA)
Description
Convert integer represented in string inA, into an int type
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inA | string | The text you would like to change |
Return Type
string
Example
intParse("45") will return the integer 45
will return: int type of the integer represented in string inA
exception will return: Exception thrown if string inA doesn't represent an integer
Comments
Please sign in to leave a comment.