Skip to main content
Version: v0.17.0

StringToCase

Alias:StringToCase, ChangeCase, ToCase

Output:StringStream

Converts a string to a particular case.

ParameterTypeRequiredPositionSummary
String
Of
string✔1The string to change the case of.
Case
To
TextCase✔2The case to change to.

Examples​

Example 1​

SCL​

StringToCase String: 'string to change' Case: TextCase.Title

Expected Output​

String To Change

Example 2​

SCL​

ChangeCase Of: 'string to change' To: 'Upper'

Expected Output​

STRING TO CHANGE