upperCase
upperCase(S_string) =>t_result
Description
Returns a string that is a copy of the given argument with the lowercase alphabetic characters replaced by their uppercase equivalents.
If the parameter is a symbol, the name of the symbol is used.
Arguments
Value Returned
Examples
upperCase("Hello world!")
=> "HELLO WORLD!"
Related Topics
Return to top