string_append


string_append(s1, @rest...)
      

Return a new string formed by concatenating the strings s1, ....

Examples:


string_append("abc", make_string(5, \x), make_string(5, \y))
// abcxxxxxyyyyy
      

Also see:

strings_join
string_split


Core Module Index | Contents