Syntax
string toupper( string str )
Description
toupper returns a copy of str with all characters converted to uppercase, if possible. Some characters such as !£$%^& or numbers do not have an uppercase equivalent.
Example
user = "ADRIAN" if ( user == toupper("Adrian")) { accept; } if (tolower(input("User:"))=="adrian") accept;