trim
Table of Contents
Function
trim — strip leading and trailing whitespace
Synopsis
trim(s: string) -> string
Description
The trim function converts stips all leading and trailing whitespace
from string argument s
and returns the result.
Examples
yield trim(this)
" = SuperDB = "
Loading...