lower()

Table of Contents

Definition

lower() takes a string value as an argument and returns that string in lowercase.

Examples

The following example returns the email address in lowercase.

| makeresults
| eval string="JANE.DOE@EXAMPLE-EMAIL.COM"
| eval lowercase=lower(string)
Screenshot of the previous example’s result

Further Reading