


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!)