18 lines
304 B
Plaintext
18 lines
304 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.
|
|
|
|
Related:
|
|
|
|
- PHP: `trim()`
|
|
- JavaScript / Node.js: `String.prototype.trim()`
|