Liquid Studio Documentation
Data Mapping / Data Mapper Functions / By Category / String / Join String
In This Topic
    Join String
    In This Topic

    Function Name
    JoinString
    Category
    String
    Icon
    CodeToChar
    Description
    Convert Unicode value to character
    Inputs
    Values A sequence of string values that will be joined together to form a single string
    Outputs
    String The string resulting from joining all the input Values and placing the Separator between them.
    Properties
    Separator The string that is inserted between each Value entry in order to produce the output String

    Usage

    Concatenates all the string values in the input sequence, using the specified separator between each value.

    Example

    If the input Value contains the following values

    A
    B
    C
    D
    E

    And the separator string is ', ' then the resulting output string is

    A, B, C, D, E

    See Also