Functions
str.upper()
Converts a string to upper case; the other half of the pair with str.lower. It takes the string and nothing else.
Syntax · 1 of 4
str.upper(const string source) → const string
Arguments
source required const string the string to convert Return Type
const string Syntax · 2 of 4
str.upper(input string source) → input string
Arguments
source required input string the string to convert Return Type
input string Syntax · 3 of 4
str.upper(simple string source) → simple string
Arguments
source required simple string the string to convert Return Type
simple string Syntax · 4 of 4
str.upper(series string source) → series string
Arguments
source required series string the string to convert Return Type
series string