...
Info | ||
---|---|---|
| ||
This routine is available since starting with katl-commons 2.5 (for JIRA Jira 5.x). |
Syntax
...
toLower(string)
Description
...
Excerpt |
---|
Returns the string only with lower case letters. |
Returns the given string that has it's letters converted to lower case. If the string contains other characters than letters the chars that are not letters will not be converted.
Parameters
...
Parameter name | Type | Required | Description |
---|---|---|---|
string | string | Yes | Specifies a character expression that will be converted to lower case. |
Return type
...
string
Example
...
Example 1
...
Code Block |
---|
wret = toLower("FOoBaR"); print(wret); |
Prints "foobar".
Example 2
...
Code Block |
---|
wret = toLower("ABC2345f.ff"); print(wret); |
Prints "abc2345f.ff".
See
...
also
Filter by label (Content by label) | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|