-
Notifications
You must be signed in to change notification settings - Fork 2
String case
ryannewington edited this page Jun 23, 2016
·
1 revision
This transform allows converting a string to either upper, lower, or title case.
Parameter | Description |
---|---|
Case | Specifies the case conversion to perform on the string |
The transform accepts string values as its input
The transform accepts multiple input values, and processes each of them individually
The transform returns a string value for each input value
Input value | Case | Output value |
---|---|---|
This is a test | Upper | THIS IS A TEST |
This is a test | Lower | this is a test |
This is a test | Title | This Is A Test |