Core Function LC

From Sputnik Wiki
Revision as of 01:28, 12 September 2013 by UberFoX (Talk | contribs)
Jump to: navigation, search
LC( <expression> )

Contents

Description

Returns string in all lower case.

Parameters

expression

The string to use.

Return Value

Uppercase string.

Example

$result = LC("TESTING");
Println("Result:" , $result); // Prints testing

Modify the string in place

$value = "TESTing";
Println($value); // Prints TESTing
$value->lc(); // Modify the string in place
Println($value); // Prints testing
// There is no return value if you do this
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox