The editor can change the case of the current word or the selection. The editor will change the case of the selection, if there is a selection, otherwise it will change the case of word at the insertion point.

To change text to uppercase:

This changes, for instance, ‘Hello’ to ‘HELLO’.

To change text to lowercase:

This changes, for instance, ‘Hello’ to ‘hello.’

To switch between uppercase and lowercase:

This changes, for instance, ‘Hello’ to ‘hELLO.’

With large software teams or imported source code, sometimes identifiers don't conform to your local coding style. To assist in conversion between two common coding styles for identifiers, CrossStudio's editor offers the following two shortcuts:

To change from split case to camel case:

This changes, for instance ‘this_is_wrong’ to ‘thisIsWrong.’

To change from camel case to split case:

This changes, for instance ‘thisIsWrong’ to ‘this_is_wrong.’