csk_fn_concatenate_strings_with_delimiter(arg1, arg2)

Use this function to concatenates strings with a custom delimiter.
  • String: csk_fn_concatenate_strings_with_delimiter(arg1, arg2)
  • Input:
    • arg1: List<Object> inputList: The inputs whose variables will be concatenated
    • arg2: The delimiter, for example, comma or pipe
  • Example: $csk_fn_concatenate_strings_with_delimiter(["Col 1", "Col 2", "Col 3"], "|") -> "Col1|Col2|Col3"