Convert a string to uppercase.
upper(string)
string (string) - The string to convertString converted to uppercase
Basic conversion:
print(upper("hello")) // "HELLO"
print(upper("Hello World")) // "HELLO WORLD"
Numbers and special characters:
print(upper("abc123!@#")) // "ABC123!@#"
Variable strings:
text = "duso scripting language"
title = upper(text)
print(title) // "DUSO SCRIPTING LANGUAGE"