stringLower()

Synopsis

Returns a string where all alphabetic characters in the given string to lower case.

Syntax

stringLower ( str As String ) As String 
Argument Type Description
str String a string of mixed-case characters

Example 1

Intent >stringLower("Four Score and Seven Years Ago...") 
--> "four score and seven years ago..."