string StringToLower(string inA)
Description
Returns the string inA, containing just lower-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
stringToLower("Have A Good Day!") will return the string: "have a good day!".
Comments
Please sign in to leave a comment.