Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parameter name

Type

Required

Description

string_arr

string []

Yes

Specifies the strings to be concatenated

delimiter

string

Yes

The delimiting string

Return type:

string

Related routines

Filter by label (Content by label)
spacesSIL40
cqllabel = "regex" and space = "SIL40"
labelsregex


Example:

Example 1:

Code Block
string [] arr = {"boo", "and", "foo"};
return join(arr, ":");

...