%stringToUpperCase()

Aliases%stringToUpperCase( )
Parametersstring @value

    Returns the given value with all letters replaced with their upper case
version.

Example:

@text = "SOME stupid looKIng TExt."
echo String: [@text]
echo String: [%stringToUpperCase( @text )]

Output:

String: [SOME stupid looKIng TExt.]
String: [SOME STUPID LOOKING TEXT.]