Returns a string with all Unicode letters mapped to their lowercase.
Arguments
Arguments | |
---|---|
source |
The string whose lowercase copy will be returned. |
Returns
A copy of the string in its lowercase form.
Raised exceptions
Exceptions | |
---|---|
TypeError |
If source is not a string. |
Examples
- returnStep: return: ${text.to_lower("Hello World")} # returns "hello world"