LogoLogo
Home
  • Verb Documentation
  • Release Notes
  • Environment Settings
    • Authentication
      • Authentication Endpoint
  • Data Sources
    • Ingestion Methods
    • Table Sync Intervals
    • Data Source Integrations
      • Network Permissions
      • Microsoft SQL Server
      • PostgreSQL
      • MongoDB
      • Snowflake
      • Elasticsearch
      • DynamoDB
      • Google BigQuery
      • Firebase Cloud Firestore
      • Supabase
      • Cloud Files
      • Flat Files
    • Data Synchronization
      • Synchronization Methods
        • Full Synchronization
        • Incremental Synchronization
        • Change Tracking
        • Change Data Capture
      • Synchronization Intervals
      • Synchronization Status
        • Pausing and Resuming
      • Synchronization History
      • Schema Changes
      • Row Filtering
      • Schemaless & NoSQL
      • Managing Connections
      • Troubleshooting
  • Models
    • What is a Model
      • Elements of a Model
      • Model Management
    • Building a Model
      • Add/Remove Data
      • Relationships
      • Row-Level Security
      • Transformations
    • Advanced Model Information
      • Database Keys
      • Unstructured Data
      • Publishing Updates
      • Troubleshooting
      • Automatic Modeling
  • Data Transformations
    • What is a Transformation
      • Elements of a Transformation
      • Transformation Management
    • Building Transformations
      • Creating Transformations
      • Configure Transformation Steps
      • Transformation Steps
        • Calculator
        • Manipulate Text
        • Map Values
        • Remove Duplicates
        • Date Operation
        • Select Columns
        • Change Type
        • Group Data
        • Filter Data
        • Join Data
        • Append Rows
        • Pivot Data
        • Rank Data
        • Window Data
      • Complete and Publish
  • Collections
    • What is a Collection
      • Elements of a Collection
    • Building Collections
    • API Collections
      • Building API Collections
        • Connect Data Sources
        • Data Model
        • Select Data
        • Authentication and Security
        • Data Access API Keys
        • Data Access API Documentation
      • API Collection Versions
    • Advanced Collection Options
      • Time Zones
      • Currency Symbols
  • Tiles
    • What is a Tile
      • Elements of a Tile
    • Tile Management
      • Tile Data
    • Tile Actions
    • Custom Date Formats
    • Currency Conversion
  • Design Themes
    • What is a Design Theme
    • General Theme Settings
    • Data Visualization Settings
  • Account Settings
    • Integrations
      • Slack
  • Legal
    • Terms of Use
    • Privacy Policy
    • Subscription Agreement Terms
    • Subscription Agreement
    • Data Processing Addendum
Powered by GitBook
On this page
  • Change Case
  • Trim
  • Combine text
  • Extract (substring)
  • Extract Domain from Email
  • Left
  • Length
  • Pad
  • Right
  • Split

Was this helpful?

  1. Data Transformations
  2. Building Transformations
  3. Transformation Steps

Manipulate Text

Enables changes to text strings for a specific column within the selected table. The results can either Override Input Column, or create a new Column.

The available functions include:

Change Case

Changes all values to the selected case style:

  • lower case,

  • UPPER CASE

  • Capitalize Case (Title Case)

Trim

Removes text from beginning, end, or both beginning and end of the text string based on the selected character(s).

Common characters include Space, Semicolon, Comma, Tab. Multiple inputs can be selected. Selecting Other enables trimming based on unique inputs as needed.

Combine text

Enables combining values from columns within the selected table into a new column. All value types may be combined into the resulting text string and number values will be converted into text format. Values can have no separation or be separated by a selected character.

Extract (substring)

Extract text substring from column values by specifying starting position and the exact length of desired substring.

Output the results as a new column or override the input column.

Extract Domain from Email

Extracts the domain name from the selected column by searching for the “@” symbol. If the input text is not a valid email address, the results will be null.

Output the results as a new column or overrides the input column.

Left

Extracts the left most characters from the selected column text string. Select the length of the extracted string by choosing a static value or input a column with integers defining the length of the desired extracted text.

Output the results as a new column or override the input column.

Length

Returns the length of the value in the selected column. Results are output into a new column within the selected table.

Pad

Allows addition of specified number of characters to the left or right side of the input value. Select the desired string length and input a single character to be used for padding text strings which are shorter than the desired length. Output the results as a new column or override the input column.

Right

Extracts the Right most characters from the selected column text string. Select the length of the extracted string by choosing a static value or input a column with integers defining the length of the desired extracted text.

Output the results as a new column or override the input column.

Split

Enables splitting out text strings into a desired number of columns based on a selected character.

Results are output into new columns with the option to discard remaining text or to add remaining values to the final column.

Example with 3 new columns: “This - Text - Will be - Split - Up”

Left over values to the last column

Column 1
Column 2
Column 3

This

Text

Will Be - Split - Up

Left over values discarded

Column 1
Column 2
Column 3

This

Text

Will Be

PreviousCalculatorNextMap Values

Last updated 3 years ago

Was this helpful?