home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fb.zip / octave / SCRIPTS.ZIP / scripts.fat / strings / strcat.m < prev    next >
Text File  |  1999-12-24  |  2KB  |  66 lines

  1. ## Copyright (C) 1996, 1997 John W. Eaton
  2. ##
  3. ## This file is part of Octave.
  4. ##
  5. ## Octave is free software; you can redistribute it and/or modify it
  6. ## under the terms of the GNU General Public License as published by
  7. ## the Free Software Foundation; either version 2, or (at your option)
  8. ## any later version.
  9. ##
  10. ## Octave is distributed in the hope that it will be useful, but
  11. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. ## General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with Octave; see the file COPYING.  If not, write to the Free
  17. ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  18. ## 02111-1307, USA.
  19.  
  20. ## -*- texinfo -*-
  21. ## @deftypefn {Function File} {} strcat (@var{s1}, @var{s2}, @dots{})
  22. ## Return a string containing all the arguments concatenated.  For example,
  23. ## 
  24. ## @example
  25. ## @group
  26. ## s = [ "ab"; "cde" ];
  27. ## strcat (s, s, s)
  28. ##      @result{} "ab ab ab "
  29. ##         "cdecdecde"
  30. ## @end group
  31. ## @end example
  32. ## @end deftypefn
  33.  
  34. ## Author: jwe
  35.  
  36. function st = strcat (s, t, ...)
  37.  
  38.   if (nargin > 1)
  39.     save_empty_list_elements_ok = empty_list_elements_ok;
  40.     unwind_protect
  41.       empty_list_elements_ok = 1;
  42.       if (isstr (s) && isstr (t))
  43.           tmpst = [s, t];
  44.       else
  45.           error ("strcat: all arguments must be strings");
  46.       endif
  47.       n = nargin - 2;
  48.       while (n--)
  49.           tmp = va_arg ();
  50.           if (isstr (tmp))
  51.           tmpst = [tmpst, tmp];
  52.           else
  53.           error ("strcat: all arguments must be strings");
  54.           endif
  55.       endwhile
  56.     unwind_protect_cleanup
  57.       empty_list_elements_ok = save_empty_list_elements_ok;
  58.     end_unwind_protect
  59.   else
  60.     usage ("strcat (s, t, ...)");
  61.   endif
  62.  
  63.   st = tmpst;
  64.  
  65. endfunction
  66.