string StringToUpper(string inA)
Description
Returns the string inA, containing just upper-case letters.
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
stringToUppre("Have A Good Day!") will return the string: "HAVE A GOOD DAY!".
Comments
Please sign in to leave a comment.