839 B
839 B
title | description | menu | weight | ||||||
---|---|---|---|---|---|---|---|---|---|
strings.trimPrefix() function | The `strings.trimPrefix()` function removes a prefix from a string. Strings that do not start with the prefix are returned unchanged. |
|
301 |
The strings.trimPrefix()
function removes a prefix from a string.
Strings that do not start with the prefix are returned unchanged.
Output data type: String
import "strings"
strings.trimPrefix(v: "123_abc", prefix: "123")
// returns "_abc"
Paramters
v
The string value to trim.
Data type: String
prefix
The prefix to remove.
Data type: String
Examples
Remove a prefix from all values in a column
import "strings"
data
|> map(fn:(r) => strings.trimPrefix(v: r.sensorId, prefix: "s12_"))