toupper
toupper — converts lower case letters to upper case.
toupper (string|number)
stringAny string.
numberAny number.
Strings with all letters converted to upper case. Numbers in integer form. Floating point numbers are truncated.
This function converts any lower case letters in a string to upper case. It will also convert numbers to their base 10 integer representation.
Gamma>toupper("Jack works for IBM.");"JACK WORKS FOR IBM."Gamma>toupper("UNICEF received $150.25.");"UNICEF RECEIVED $150.25."Gamma>toupper(5.3);5Gamma>toupper(0b0110);6Gamma>