1% Generated by roxygen2 (4.1.1): do not edit by hand
2% Please edit documentation in R/pystr_join.R
3\name{pystr_join}
4\alias{pystr_join}
5\title{Join the elements of a character vector or list into a string.}
6\usage{
7pystr_join(iterable, sep = "")
8}
9\arguments{
10\item{iterable}{A character vector.}
11
12\item{sep}{A character string.}
13}
14\value{
15A character vector or list.
16}
17\description{
18Return a string which is the concatenation of the elements in the iterable \code{iterable},
19where \code{sep} is the separator between elements.
20}
21\examples{
22pystr_join(c("A", "B", "C"))
23pystr_join(c(1, 2, 3), "+")
24pystr_join(list(c(1, 2, 3), c(4, 5, 6)), ", ")
25}
26\references{
27\url{https://docs.python.org/3/library/stdtypes.html#str.join}
28}
29\seealso{
30\code{\link{pystr_split}}
31}
32
33