Core Function UC
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> UC( <expression> ) </pre> === Description === Returns string in all Upper Case. === Parameters === ==== expression ==== The string to evaluate. === Return Value === ...") |
|||
Line 5: | Line 5: | ||
=== Description === | === Description === | ||
− | + | The string to use. | |
=== Parameters === | === Parameters === |
Revision as of 15:12, 29 November 2011
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