uce/site/doc/pages/trim.txt
2026-06-16 12:21:31 +00:00

17 lines
269 B
Plaintext

:sig
String trim(String raw)
:params
raw : string to be trimmed
return value : string with leading and trailing whitespace characters removed
:see
>string
:content
Returns `raw` with leading and trailing whitespace removed.
:example
print(trim(" docs "), "\n");