Usage
Syntax: str.lower()
Returns string.
Explanation
Transforms the string into lower-case letters.
Example
function onCreated() { temp.string = "Hello World!"; echo(temp.string.lower()); }
... Will output "hello world!" in RC when on the serverside, or in your F2 menu when on the clientside. Note that the output is lower-case.
Categories
CategoryObjectFunction
CategoryFunctionClientside
CategoryFunctionServerside