powered by
strs_join concatenates elements of iterable using sep. It is similar to Python's str.join().
strs_join
iterable
sep
str.join()
strs_join(sep, iterable)
A single string with elements of iterable joined by sep.
A string separator used to join the elements.
A character vector to be joined.
Python str.join() documentation
strs_join("-", c("hello", "world")) strs_join("", c("hello", "world")) # no separator
Run the code above in your browser using DataLab