Core Function UC
From Sputnik Wiki
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 // Modify the string in place my $n = StrLen($value); my $i = 0; while ($n-- > 0) { $value[$i] = UC($value[$i]); $i++; } // All done Println($value); // Prints TESTING