string stringTrim(string inA)
Description
Trim all white-space characters from the start and end of inA string
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inA | string | input string |
Return Type
string
Examples
stringTrim(" Hello World ") will return the string "Hello World".
inA string after removing all white-space characters from the start and end of inA
Comments
Please sign in to leave a comment.