string trim(string)
trim() returns the given string argument without leading and trailing whitespace. The following characters are considered whitespace: space, newline, carriage return, tab, vertical tab.
trim()
Example:
trim(" xy ")
returns xy.
xy
Last updated 6 years ago