Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Description

Transforms a string with a given separator into an array (recommended use). It also splits a string with a given separator and returns only the selected piece (counting from 0).

How does it work in the search window?

Select Create field in the search window toolbar, then select the Split operation. You need to specify two arguments, plus a third optional argument:

Argument

Description

Data type

Split mandatory

The string you want to split or extract as an array.

string

by separator mandatory

The separator you want to identify in the string.

string

and return piece

The position of the piece you want to extract, counting from 0. Pieces are the distinct segments obtained from the division made by the separators.

integer

The data type of the values in the new field is array when used with 2 arguments and string when used with 3 arguments.

Example

In the siem.logtrust.web.activity table, we want to create a new field to show only the hour value in each string of the userid column. We need to get the part of the string that comes between the first and second : occurence. Using the - value as separator, each value will be split into different pieces. To do this, we will create a new field using the Split operation.

The arguments needed to create the new column are:

  • Split - userid column

  • by separator - Click the pencil icon and enter-

  • and return piece - Click the pencil icon and enter(remember the count starts as 0, so you must enter 1 to get the second piece)

Click Create column and you will see the following result:

How does it work in LINQ?

Use the operator select... as...  and add the operation syntax to create the new column. This is the syntax for the Split operation:

  • split(string, "separator_string")

  • split(string, "separator_string", piece_integer)

  • split(string, "separator_string") [piece_integer]

Example

You can copy the following LINQ scripts and try the above examples on thsiem.logtrust.web.activity table. 

from siem.logtrust.web.activity
  select split(userid, "-", 1) as array_userid
from siem.logtrust.web.activity
  select split(userid, "-", 1) as piece2_userid
  • No labels