strings_join


strings_join(infix, ss)
      

Return a new string that was created by appending each string in the list ss with infix.

Examples:


strings_join("-", ["abc", make_string(5, \x), make_string(5, \y)])
// abc-xxxxx-yyyyy
      

Also see:

string_split
strings_at


Core Module Index | Contents