Table of Contents

Join Procedure

Codeunit List Functions

Join a list of integers into a text string, separated by a delimiter.

Overloads

Name Description
Join(List of [Integer]; Text): Text Join a list of integers into a text string, separated by a delimiter.
Join(List of [Text]; Text): Text Join a list of texts into a text string, separated by a delimiter.

Join(List of [Integer]; Text) Procedure

Join a list of integers into a text string, separated by a delimiter.

Signature

Join(IntegerList: List of [Integer]; Delimiter: Text) JoinedText: Text

Parameters

IntegerList List of [Integer]

The list of integers being joined.

Delimiter Text

The delimiter to use for joining.

Returns

Text

The integer values joined into a string with the given separator.

Join(List of [Text]; Text) Procedure

Join a list of texts into a text string, separated by a delimiter.

It is the responsibility of the caller to ensure that the delimiter does not occur in any of the texts being joined.

Signature

Join(TextList: List of [Text]; Delimiter: Text) JoinedText: Text

Parameters

TextList List of [Text]

The list of texts being joined.

Delimiter Text

The delimiter to use for joining.

Returns

Text

The text values joined into a new string with the given separator.

This documentation is generated from Smart Toolbox v27.1