strings.trimSpace() function
The strings.trimSpace()
function removes leading and trailing spaces from a string.
Output data type: String
import "strings"
strings.trimSpace(v: " abc ")
// returns "abc"
Parameters
v
String to remove spaces from.
Data type: String
Examples
Trim leading and trailing spaces from all values in a column
import "strings"
data
|> map(fn: (r) => ({ r with userInput: strings.trimSpace(v: r.userInput) }))
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. To find support, the following resources are available:
InfluxDB Cloud and InfluxDB Enterprise customers can contact InfluxData Support.