implode

PURPOSE ^

IMPLODE Joins strings with delimiter in between.

SYNOPSIS ^

function string=implode(pieces,delimiter)

DESCRIPTION ^

IMPLODE    Joins strings with delimiter in between.
   IMPLODE(PIECES,DELIMITER) returns a string containing all the
   strings in PIECES joined with the DELIMITER string in between.

   Input arguments:
      PIECES - the pieces of string to join (cell array), each cell is a piece
      DELIMITER - the delimiter string to put between the pieces (string)
   Output arguments:
      STRING - all the pieces joined with the delimiter in between (string)

   Example:
      PIECES = {'ab','c','d','e fgh'}
      DELIMITER = '->'
      STRING = IMPLODE(PIECES,DELIMITER)
      STRING = ab->c->d->e fgh

   See also EXPLODE, STRCAT

   Created: Sara Silva (sara@itqb.unl.pt) - 2002.08.25
   Modified: Sara Silva (sara@dei.uc.pt) - 2005.03.11
       - implode did not work if the delimiter was whitespace, so
         line 36 was replaced by line 37.
       - thank you to Matthew Davidson for pointing this out
         (and providing the solution!)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Sun 13-Oct-2013 13:32:39 by m2html © 2005