Core Function UC

From Sputnik Wiki
Revision as of 21:43, 25 August 2013 by UberFoX (Talk | contribs)
Jump to: navigation, search
UC( <expression> )

Contents

Description

The string to use.

Parameters

expression

The string to evaluate.

Return Value

Uppercase string.

Example

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

Modify the string in place

$value = "testing";
Println($value); // Prints testing
$value->uc(); // Modify the string in place
Println($result); // Prints TESTING
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox