Mercurial > hg > octave-lyh
changeset 920:1677bb6533fb
[project @ 1994-11-14 16:37:05 by jwe]
Initial revision
author | jwe |
---|---|
date | Mon, 14 Nov 1994 16:37:05 +0000 |
parents | ba98491f97b2 |
children | 58f0c171bbbd |
files | scripts/strings/strcat.m |
diffstat | 1 files changed, 42 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
new file mode 100644 --- /dev/null +++ b/scripts/strings/strcat.m @@ -0,0 +1,42 @@ +# Copyright (C) 1994 John W. Eaton +# +# This file is part of Octave. +# +# Octave is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2, or (at your option) any +# later version. +# +# Octave is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License +# along with Octave; see the file COPYING. If not, write to the Free +# Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + +function st = strcat (s, t, ...) + + if (nargin > 1) + if (isstr (s) && isstr (t)) + tmpst = [s, t]; + else + error ("strcat: all arguments must be strings"); + endif + n = nargin - 2; + while (n--) + tmp = va_arg (); + if (isstr (tmp)) + tmpst = [tmpst, tmp]; + else + error ("strcat: all arguments must be strings"); + endif + endwhile + else + usage ("strcat (s, t, ...)"); + endif + + st = tmpst; + +endfunction