Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
maxLevel2
typeflat

...

Select Create field in the search window toolbar, then select the Join operation. You need to specify at least one argument:

Argument

Data type

Array mandatory

Array(str)

Note

Use the Make Array (mkarray) operation to convert a field to array data type.

separator

String(str)

...

Code Block
join([null,"bc","def"],   "#")  ==> #bc#def
join(["a",null,"def"], "#")   ==> a##def

Example

You can copy the following LINQ script and try the above example on the siem.logtrust.web.activity table.

...