6138
|
1 ## Copyright (C) 1996, 1997, 2006 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 |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, 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 |
6138
|
36 function st = strcat (varargin) |
920
|
37 |
6138
|
38 if (nargin < 1) |
6046
|
39 print_usage (); |
6138
|
40 elseif (! iscellstr (varargin)) |
|
41 error ("strcat: all arguments must be strings"); |
920
|
42 endif |
|
43 |
6138
|
44 st = [varargin{:}]; |
920
|
45 |
|
46 endfunction |
6138
|
47 |
|
48 ## test the dimensionality |
|
49 ## 1d |
|
50 %!assert(strcat("ab ", "ab "), "ab ab ") |
|
51 ## 2d |
|
52 %!assert(strcat(["ab ";"cde"], ["ab ";"cde"]), ["ab ab ";"cdecde"]) |