Convert to Lowercase
This is a pre-built Action located under the @Generic Element. The functionality of this Action in Avo Assure is to change the given text to lowercase letters. The converted text is then saved in a dynamic variable.
Syntax
Input Value: <input string>
<input string> (Required)
Provide the string that needs to be converted to lowercase.
Output Value: <Dynamic Variable>;<Dynamic Variable>(Optional)
<Dynamic Variable> (Required)
This dynamic variable holds the converted lowercase string.
<Dynamic Variable> (Optional)
This dynamic variable stores the status as True or False.
Example: Converting a String to Lowercase
In this example, we explain how to convert a given string into lowercase letters.
Action: Convert to Lower Case
Input Value: ALICE JOHNSON
This specifies the string that needs to be converted into lowercase.
Output Value: {Lowercase string}
The converted string (e.g., alice johnson) is stored in this {Lowercase string} dynamic variable for further use.
If the second output variable is defined, it stores the operation status with the following possible values:
True: If the conversion is successful.
False: If the conversion fails due to invalid input.
Logical Explanation: The Convert to Lower Case action fetches the value from the Input Value column (ALICE JOHNSON) and converts it into lowercase (alice johnson). The converted string is then stored in the {Lowercase string} variable.

Knowledge Bites: Below are some examples of different string scenarios
Text Strings
AUTOMATION
automation
Already in Lowercase
empid
empid
Alphanumeric strings
ID2025
id2025
Last updated
Was this helpful?