String Transform
Transform and manipulate strings using various casing styles and trimming or reversing operations.
Inputs#
| Port | Description |
|---|---|
| String to transform | |
| Transformation operation to apply |
Outputs#
| Port | Description |
|---|---|
| Transformed string |
Addendum#
Transformation Options#
Casing:#
lower: Convert to lowercaseupper: Convert to uppercasetitle: Convert to title casecamel: Convert to camelCasepascal: Convert to PascalCasesnake: Convert to snake_casealternating: Convert to aLtErNaTiNg CaSe
Other Operations:#
reverse: Reverse the stringtrim: Trim whitespace from both endstrim_left: Trim whitespace from the lefttrim_right: Trim whitespace from the right
ID: core/string-transform@v1