Problem

You need to convert a string from lowercase to uppercase or vice versa.

Solution

Use the built in String functions asLowercase and asUppercase.

'HELLO' asLowercase.

'hello' asUppercase.

As always evaluate these expression in Dolphin Smalltalk.