922 B
922 B
| title | description | menu | weight | ||||||
|---|---|---|---|---|---|---|---|---|---|
| strings.trim() function | The strings.trim() function removes leading and trailing characters specified in the cutset from a string. |
|
301 |
The strings.trim() function removes leading and trailing characters specified
in the cutset from a string.
Output data type: String
import "strings"
strings.trim(v: ".abc.", cutset: ".")
// returns "abc"
Paramters
v
The string value from which to trim characters.
Data type: String
cutset
The leading and trailing characters to trim from the string value.
Only characters that match the cutset string exactly are trimmed.
Data type: String
Examples
Trim leading and trailing periods from all values in a column
import "strings"
data
|> map(fn:(r) => strings.trim(v: r.variables, cutset: "."))