annotate scripts/strings/strtrim.m @ 7016:93c65f2a5668

[project @ 2007-10-12 06:40:56 by jwe]
author jwe
date Fri, 12 Oct 2007 06:41:26 +0000
parents 0d11a12643f1
children a1dbe9d80eee
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6975
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
1 ## Copyright (C) 1996 Kurt Hornik
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
2 ##
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
3 ## This file is part of Octave.
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
4 ##
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
5 ## Octave is free software; you can redistribute it and/or modify it
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
6 ## under the terms of the GNU General Public License as published by
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
7 ## the Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
8 ## your option) any later version.
6975
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
9 ##
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
10 ## Octave is distributed in the hope that it will be useful, but
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
13 ## General Public License for more details.
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
14 ##
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
15 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
16 ## along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6975
diff changeset
17 ## <http://www.gnu.org/licenses/>.
6975
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
18
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
19 ## -*- texinfo -*- @deftypefn {Function File} {} deblank (@var{s})
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
20 ## Remove leading and trailing blanks and nulls from @var{s}. If
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
21 ## @var{s} is a matrix, @var{deblank} trims each row to the length of
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
22 ## longest string. If @var{s} is a cell array, operate recursively on
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
23 ## each element of the cell array. @end deftypefn
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
24
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
25 ## Author: John Swensen <jpswensen@jhu.edu>
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
26
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
27 ## This function was derived from deblank.
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
28
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
29 function s = strtrim (s)
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
30
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
31 if (nargin != 1)
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
32 print_usage ();
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
33 endif
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
34
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
35 if (ischar (s))
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
36
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
37 k = find (! isspace (s) & s != "\0");
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
38 if (isempty (s) || isempty (k))
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
39 s = "";
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
40 else
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
41 s = s(:,ceil (min (k) / rows (s)):ceil (max (k) / rows (s)));
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
42 endif
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
43
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
44 elseif (iscell(s))
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
45
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
46 s = cellfun (@strtrim, s, "UniformOutput", false);
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
47
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
48 else
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
49 error ("strtrim: expecting string argument");
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
50 endif
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
51
0d11a12643f1 [project @ 2007-10-08 18:23:44 by jwe]
jwe
parents:
diff changeset
52 endfunction