Returns a string where all the letters in the specified string are turned to uppercase.
Syntax
toUpperCase( string )
string.toUpperCase( )
Parameters
string
|
the string to convert.
|
Returns
string
|
the string where all the letters are turned into uppercase.
|
Example
s = toUpperCase( s )
|