$toUpperCase
$toUpperCase
will change the given text from lowercase to uppercase.
Usage
$toUpperCase[text]
Parameters
Field | Type | Description | Required |
---|---|---|---|
text | string | The text to change to uppercase. | true |
Example(s)
This will make everything given uppercase, in this case it would return THIS IS AN EXAMPLE
:
1client.command({2 name: "toUpperCase",3 code: `4 $toUpperCase[this is an example]5 `6});