Version: v2.4
TextCaseTransformer
This node converts text to upper or lower case
Input
It accepts a DataFrame as input from the previous Node
Type
transform
Fields
Name | Title | Description |
---|---|---|
inputCol | Input Column Name | input column name |
mode | Text Case Type | input to convert text to upper or lower case |
outputCol | Output Column | Output Column |
Examples
Input
name | age | height |
---|---|---|
Alice | 5 | 80 |
Alice | 5 | 80 |
Alice | 10 | 80 |
Parameters1 ----------
Name | Value |
---|---|
Input Column Name | name |
Text Case Type | upper |
Output Column | name_upper |
Output1
name | age | height | name_upper |
---|---|---|---|
Alice | 5 | 80 | ALICE |
Alice | 5 | 80 | ALICE |
Alice | 10 | 80 | ALICE |
Parameters2
Name | Value |
---|---|
Input Column Name | name |
Text Case Type | lower |
Output Column | name_lower |
Output2
name | age | height | name_lower |
---|---|---|---|
Alice | 5 | 80 | alice |
Alice | 5 | 80 | alice |
Alice | 10 | 80 | alice |