trim
lib callCapy
function trim(raw : string) string
Description
trim removes leading and trailing whitespace.
Parameters
raw : text to trim
Return Values
text without leading or trailing whitespace
Example
Capy
print(trim(" docs "), "\n")
function trim(raw : string) string
trim removes leading and trailing whitespace.
raw : text to trim
text without leading or trailing whitespace
print(trim(" docs "), "\n")