UCE Docs / trim

Signature

String trim(String raw)

Parameters

raw : string to be trimmed
return value : string with leading and trailing whitespace characters removed

Returns raw with leading and trailing whitespace removed.

Example

print(trim("  docs  "), "\n");
Output
docs