trim Search Operator
The trim operator eliminates leading and trailing spaces from a string field.
Syntax
trim(<field>) as <field>
trim(" <string expression> ") as <field>
Examples
Remove spaces from a literal string
Take the string value " Hello World ". To remove the leading and trailing spaces you'd do the following:
| trim(" Hello World ") as greeting
This would return a field named greeting with a new value of "Hello World".
Remove leading and trailing spaces from a parsed field
Use trim after parsing a field that may contain surrounding whitespace:
=Apache/Access
| parse "user=* " as username
| trim(username) as username