|
ToLower
string
ToLower(string
string)
Return
Value
A
string, containing all characters in lowercase.
Parameters
string
– a
string.
Remarks
Converts given
string to lowercase string.
Example
The following
example demonstrates the use of ToLower.
# Example for ToLower
strings
=
ToLower("Hello,
World"
)
Println("New
string is
",
s)
Output of the example
script:
New string is hello,
world
|