2847
|
1 ## Copyright (C) 1996, 1997 John W. Eaton |
2313
|
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. |
920
|
19 |
3361
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} strcat (@var{s1}, @var{s2}, @dots{}) |
|
22 ## Return a string containing all the arguments concatenated. For example, |
3426
|
23 ## |
3361
|
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 |
2697
|
33 |
2314
|
34 ## Author: jwe |
|
35 |
920
|
36 function st = strcat (s, t, ...) |
|
37 |
|
38 if (nargin > 1) |
3180
|
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)) |
3426
|
43 tmpst = [s, t]; |
920
|
44 else |
3426
|
45 error ("strcat: all arguments must be strings"); |
920
|
46 endif |
3180
|
47 n = nargin - 2; |
|
48 while (n--) |
3426
|
49 tmp = va_arg (); |
|
50 if (isstr (tmp)) |
3180
|
51 tmpst = [tmpst, tmp]; |
3426
|
52 else |
3180
|
53 error ("strcat: all arguments must be strings"); |
3426
|
54 endif |
3180
|
55 endwhile |
|
56 unwind_protect_cleanup |
|
57 empty_list_elements_ok = save_empty_list_elements_ok; |
|
58 end_unwind_protect |
920
|
59 else |
|
60 usage ("strcat (s, t, ...)"); |
|
61 endif |
|
62 |
|
63 st = tmpst; |
|
64 |
|
65 endfunction |