Returns a string where all the leading and trailing white spaces are removed in the specified string.
Syntax
trim( string )
string.trim( )
Parameters
string
|
the string to trim.
|
Returns
string
|
the string where all the leading and trailing white spaces are removed.
|
Example
s = s.trim( )
|