StringToCase
Alias:StringToCase
, ChangeCase
, ToCase
Output:StringStream
Converts a string to a particular case.
Parameter | Type | Required | Position | Summary |
---|---|---|---|---|
String Of | string | ✔ | 1 | The string to change the case of. |
Case To | TextCase | ✔ | 2 | The 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