Skip to content
Update Analyse "Modify String Values" authored by Samuel Melm's avatar Samuel Melm
...@@ -5,6 +5,11 @@ Modify string includes all scenarios that are applied to a string column and tra ...@@ -5,6 +5,11 @@ Modify string includes all scenarios that are applied to a string column and tra
Trifacta lists the following sub-scenarios: Trifacta lists the following sub-scenarios:
- Basic String Operations
- Prepend/Append to string ("foo" + "bar" -> "foobar")
- Substring (e.g. "Hello World"[1,4] -> "ello")
- Replace substring with other string
- Others that don't qualify as "modify string" (length, isSubstring, indexOf...)
- Clean Strings - Clean Strings
- Define and enforce formats (e.g. url/zip code) and replace wrong values with defaults - Define and enforce formats (e.g. url/zip code) and replace wrong values with defaults
- Remove from string: - Remove from string:
...@@ -16,18 +21,13 @@ Trifacta lists the following sub-scenarios: ...@@ -16,18 +21,13 @@ Trifacta lists the following sub-scenarios:
- special letters (e.g. transform ä to a) - special letters (e.g. transform ä to a)
- a specific sub-string (all or first occurence) - a specific sub-string (all or first occurence)
- quotes arround the string - quotes arround the string
- Pad Values
- Add prefix or suffix to strings
- Standardize String Values - Standardize String Values
- Standardize case - Standardize case: toLower, toUpper
- Break out CamelCase - Break out CamelCase ("fooBar" -> "foo bar")
- Standardize String Lengths - Standardize String Lengths
- Pad string values - Pad string values (e.g. leading/trailing spaces)
- Fix the length of strings - Fix the length of strings (e.g. remove all characters after the 8th)
- Sub-Strings
- length
- find/rightfind
- splicing/substring
Excluded from this analysis: Excluded from this analysis:
- Convert colums to one string column (aka printf), because it does not modify strings. - Convert colums to one string column (aka printf), because it does not modify strings.
... ...
......