Mercurial > hg > octave-nkf
annotate scripts/strings/strtrim.m @ 10751:717ba2c3eef1
rewrite cell2struct, 1 failing test
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Fri, 25 Jun 2010 08:45:22 +0200 |
parents | 58604c45ca74 |
children | 01ddaedd6ad5 |
rev | line source |
---|---|
8920 | 1 ## Copyright (C) 1996, 2007, 2008, 2009 Kurt Hornik |
6975 | 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 | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
6975 | 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 | |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
6975 | 18 |
7346 | 19 ## -*- texinfo -*- |
7666
693ac94c2854
Fixed minor bugs in help texts of [x|y|z]lim and strtrim
sh@sh-laptop
parents:
7346
diff
changeset
|
20 ## @deftypefn {Function File} {} strtrim (@var{s}) |
6975 | 21 ## Remove leading and trailing blanks and nulls from @var{s}. If |
7666
693ac94c2854
Fixed minor bugs in help texts of [x|y|z]lim and strtrim
sh@sh-laptop
parents:
7346
diff
changeset
|
22 ## @var{s} is a matrix, @var{strtrim} trims each row to the length of |
6975 | 23 ## longest string. If @var{s} is a cell array, operate recursively on |
9036
58604c45ca74
Cleanup of data types related documentation
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
24 ## each element of the cell array. For example: |
8442
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
25 ## |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
26 ## @example |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
27 ## @group |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
28 ## strtrim (" abc ") |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
29 ## @result{} "abc" |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
30 ## |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
31 ## strtrim ([" abc "; " def "]) |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
32 ## @result{} ["abc "; " def"] |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
33 ## @end group |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
34 ## @end example |
7346 | 35 ## @end deftypefn |
6975 | 36 |
37 ## Author: John Swensen <jpswensen@jhu.edu> | |
38 | |
39 ## This function was derived from deblank. | |
40 | |
41 function s = strtrim (s) | |
42 | |
43 if (nargin != 1) | |
44 print_usage (); | |
45 endif | |
46 | |
47 if (ischar (s)) | |
48 | |
49 k = find (! isspace (s) & s != "\0"); | |
50 if (isempty (s) || isempty (k)) | |
51 s = ""; | |
52 else | |
53 s = s(:,ceil (min (k) / rows (s)):ceil (max (k) / rows (s))); | |
54 endif | |
55 | |
56 elseif (iscell(s)) | |
57 | |
58 s = cellfun (@strtrim, s, "UniformOutput", false); | |
59 | |
60 else | |
61 error ("strtrim: expecting string argument"); | |
62 endif | |
63 | |
64 endfunction | |
8442
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
65 |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
66 %!error <Invalid call to strtrim> strtrim(); |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
67 %!error <Invalid call to strtrim> strtrim("abc", "def"); |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
68 %!assert (strtrim (" abc "), "abc"); |
502e58a0d44f
Fix docstrings, add examples, references and tests to string functions
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7666
diff
changeset
|
69 %!assert (strtrim ([" abc "; " def "]), ["abc "; " def"]); |