join

join

 

Syntax

join(string_arr, delimiter)

Package

 

Alias

 

Pkg Usage

 

Description

Returns the string obtained by concatenating all the strings from the array using the provided delimiter.

Parameters

Parameter name

Type

Required

Description

Parameter name

Type

Required

Description

string_arr

string []

Yes

Specifies the strings to be concatenated.

delimiter

String

Yes

Delimiting string.

Return Type

String

Example

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

Returns "boo:and:foo"

See also

Need support? Create a request with our support team.

Copyright © 2005 - 2026 Appfire | All rights reserved.