paste                  package:base                  R Documentation

_C_o_n_c_a_t_e_n_a_t_e _S_t_r_i_n_g_s

_D_e_s_c_r_i_p_t_i_o_n:

     Concatenate vectors after converting to character.

_U_s_a_g_e:

     paste(..., sep = " ", collapse = NULL)

_A_r_g_u_m_e_n_t_s:

     ...: one or more R objects, to be coerced to character vectors.

     sep: a character string to separate the terms.

collapse: an optional character string to separate the results.

_D_e_t_a_i_l_s:

     'paste' converts its arguments to character strings, and
     concatenates them (separating them by the string given by 'sep').
     If the arguments are vectors, they are concatenated term-by-term
     to give a character vector result.

     If a value is specified for 'collapse', the values in the result
     are then concatenated into a single string, with the elements
     being separated by the value of 'collapse'.

_V_a_l_u_e:

     A character vector of the concatenated values.  This will be of
     length zero if all the objects are, unless 'collapse' is non-NULL,
     in which case it is a single empty string.

_R_e_f_e_r_e_n_c_e_s:

     Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) _The New S
     Language_. Wadsworth & Brooks/Cole.

_S_e_e _A_l_s_o:

     String manipulation with 'as.character', 'substr', 'nchar',
     'strsplit'; further, 'cat' which concatenates and writes to a
     file, and 'sprintf' for C like string construction.

_E_x_a_m_p_l_e_s:

     paste(1:12) # same as as.character(1:12)
     paste("A", 1:6, sep = "")
     paste("Today is", date())

