Convert Text to Lowercase
Convert a given text to lowercase format.
Overview
This operation takes input text and converts it to lowercase. It’s useful for standardizing text input and making it consistent for display and comparison purposes.
"HELLO WORLD" → hello world
"This is a sample text" → this is a sample text
Syntax
1. Option 1
This syntax uses an explicit get.
2. Option 2
Data
The table below lists the names of the data elements in this operation and indicates which can be renamed in the syntax.
the text
Yes
Parameters
Parameters are placeholders for data. Refer to the table below for details on each parameter in this operation. In the syntax, replace parameters with your own values.
input
The text string that needs to be converted to lowercase.
123 Main STREET
Yes
Examples
1. Lowercasing an Address
This example converts the address "123 Main STREET" to lowercase, resulting in "123 main street".
2. Lowercasing a Name
This example converts the name "JANE DOE" to lowercase, resulting in "jane doe."
Last updated
Was this helpful?