Home > freetb4matlab > strings > cstrcat.m

cstrcat

PURPOSE ^

% Return a string containing all the arguments concatenated

SYNOPSIS ^

function st = cstrcat (varargin)

DESCRIPTION ^

% -*- texinfo -*-
% @deftypefn {Function File} {} cstrcat (@var{s1}, @var{s2}, @dots{})
% Return a string containing all the arguments concatenated
% horizontally.  Trailing white space is preserved.  For example,
%
% @example
% @group
% cstrcat ('ab   ', 'cd')
%      @result{} 'ab   cd'
% @end group
% @end example
%
% @example
% @group
% s = [ 'ab'; 'cde' ];
% cstrcat (s, s, s)
%      @result{} ans =
%         'ab ab ab '
%         'cdecdecde'
% @end group
% @end example
% @seealso{strcat, char, strvcat}
% @end deftypefn

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Fri 22-May-2009 15:13:00 by m2html © 2003