Format Operations
Here are the 'Format' operations for string type transformation
Apply text casing, trimming, whitespace removal, and HTML encoding to string values.
String Format functions apply text transformation operations to each row in a selected column. They are available via the column context menu under Format > in the Table view.
To access these functions:
Open a dataset in Table view.
Click the menu icon (≡) on any text column header.
Hover over Format > to expand the submenu.
Select the desired transformation.
Alternatively click + icon if you would like to add the formatted value to a new column
To Uppercase
Converts all characters in each row of the selected column to uppercase.
Example:
hello world
HELLO WORLD
To Lowercase
Converts all characters in each row of the selected column to lowercase.
Example:
Hello World
hello world
To Titlecase
Capitalizes the first letter of each word in every row of the selected column.
Example:
lord of the rings
Lord Of The Rings
Trim WhiteSpaces
Removes any leading and trailing whitespace characters from the value in each row. Whitespace between words is preserved.
Example:
hello world
hello world
Trim Quotes
Removes any leading and trailing quote characters (" or ') from the value in each row. Quotes within the string are preserved.
Example:
"dataworkz"
dataworkz
Remove WhiteSpaces
Removes all whitespace characters from the value in each row, including spaces between words.
Example:
hello world
helloworld
💡 Note: This differs from Trim WhiteSpaces, which only removes leading and trailing spaces. Remove WhiteSpaces strips all spaces throughout the entire string.
Encode Special Characters
Replaces special characters in each row with their corresponding HTML entities. This is useful when preparing text for HTML rendering or web-based output.
The following characters are encoded:
NON_BREAKING_SPACE
(non-breaking space)
LESS_THAN
<
<
GREATER_THAN
>
>
AMPERSAND
&
&
DOUBLE_QUOTATION_MARK
"
"
APOSTROPHE
'
'
CENT
¢
¢
POUND
£
£
YEN
¥
¥
EURO
€
€
COPYRIGHT
©
©
REGISTERED_TRADEMARK
®
®
Last updated

