home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / help / base / paste < prev    next >
Encoding:
Text File  |  1997-04-23  |  595 b   |  22 lines

  1.     
  2.     _C_o_n_c_a_t_e_n_a_t_e _S_t_r_i_n_g_s
  3.     
  4.          paste(..., sep=" ", collapse)
  5.     
  6.     _D_e_s_c_r_i_p_t_i_o_n:
  7.     
  8.          paste converts its arguments to character strings, and
  9.          concatenates them (separating them by the string given
  10.          by sep).  If a value is specified for collapse, the
  11.          values in the result are then concatenated into a sin-
  12.          gle string, with the elements being separated by the
  13.          value of collapse.
  14.     
  15.          The concatenated value is returned as the value of
  16.          paste.
  17.     
  18.     _S_e_e _A_l_s_o:
  19.     
  20.          substr, nchar, strsplit
  21.     
  22.