String Utilities

This page explains how to set up string operators, for kdb Insights Enterprise pipelines, using the Web Interface.

String utility operators allows for both streaming and batch data to be operated on in kdb Insights Enterprise.

Tip

Both q and Python interfaces can be used to build pipelines programmatically. See the q and Python APIs for details.

The pipeline builder uses a drag-and-drop interface to link together operations within a pipeline. For details on how to wire together a transformation, see the building a pipeline guide.

To Uppercase

This operator receives data from a field and converts string data to uppercase.

Note

See q and Python APIs for more details.

Required Parameters:

name

description

default

Column Name to Transform

A list of column names or indices indicating the columns to act on.

 

Example: Publishing from a read expression operator

A read expression operator is a operator in which data can be manually placed in the form of a Python or q expression. In this example, we will apply an uppercase transform for an incoming q table's y column.

  1. Drag an expression reader and enter a q table with a column y you would like to perform the string transformation on.

     

  2. Drag a string operator toUppercase and set the column name to be y.

     

  3. Setup some writer to write the newly transformed data. In this example, we use a console writer.

     

To Lowercase

This operator receives data from a field and converts string data to lowercase.

Note

See q and Python API for more details.

Required Parameters:

name

description

default

Column Name to Transform

A list of column names or indices indicating the columns to act on.

 

Example: Publishing from a read expression operator

A read expression operator is a operator in which data can be manually placed in the form of a Python or q expression. In this example, we will apply an lowercase transform for an incoming q table's y column.

  1. Drag an expression reader and enter a q table with a column y you would like to perform the string transformation on.

     

  2. Drag a string operator toLowercase and set the column name to be y.

     

  3. Setup some writer to write the newly transformed data. In this example, we will use a console writer.

     

Further reading