Template Engine language reference > Template Engine utilities > String functions > $string.toLowerCase

$string.toLowerCase
This function returns a new string with all characters in the input string converted to lower case.
Syntax
$string.toLowerCase(<inStr>)
inStr
Template examples
Example 104
Template
#set($str='Hello My Cruel World!')
#set($str2=$string.toLowerCase($str))
Original string: $str
New string: $str2
Output
Original string: Hello My Cruel World!
New string: hello my cruel world!
 
OpenText StreamServe 5.6.2 Updated: 2018-01-26