Version: v2.4 
StringFunctionsMultiple
String Functions Multiple
Type
transform
Fields
| Name | Title | Description |
|---|---|---|
| description | Description | Description |
| inputCols | Columns | columns |
| functions | Function | String Function to apply |
| replaceExistingCols | Replace Existing Cols | Replace Existing Columns (true or false) |
Examples
Input
| name | age | height |
|---|---|---|
| Alice | 5 | 80 |
| Alice | 5 | 80 |
| Alice | 10 | 80 |
| James | 5 | 50 |
| James | 10 | 60 |
| James | 7 | 80 |
Parameters
| Id | Columns | Function | Replace Existing Cols |
|---|---|---|---|
| 1 | name | upper | false |
| 2 | name | lower | false |
Output
| name | age | height | name_upper | name_lower |
|---|---|---|---|---|
| Alice | 5 | 80 | ALICE | alice |
| Alice | 5 | 80 | ALICE | alice |
| Alice | 10 | 80 | ALICE | alice |
| James | 5 | 50 | JAMES | james |
| James | 10 | 60 | JAMES | james |
| James | 7 | 80 | JAMES | james |