Important
|
Deprecated in 5.0. Replaced with method trim() of the string instance. |
trim(string) => String
Removes blanks (space and tab characters) from both sides of specified string.
string |
String |
String to trim |
Return
Source string with blanks at both sides removed.
Example
print(trim(" abc def ")); //will print "abc def"