Mercurial > hg > octave-nkf
annotate scripts/strings/rindex.m @ 20761:b7ac1e94266e
maint: Further clean up of functions in ode/private dir.
* AbsRel_Norm.m, fuzzy_compare.m, integrate_adaptive.m, integrate_const.m,
integrate_n_steps.m, ode_struct_value_check.m, odepkg_event_handle.m,
odepkg_structure_check.m, runge_kutta_45_dorpri.m:
Place latest copyright first in file.
Use two spaces before beginning single-line comment.
Use parentheses around variable to be tested in switch stmt.
Use space between function name and opening parenthesis.
author | Rik <rik@octave.org> |
---|---|
date | Mon, 05 Oct 2015 12:03:16 -0700 |
parents | df437a52bcaf |
children |
rev | line source |
---|---|
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
17744
diff
changeset
|
1 ## Copyright (C) 1996-2015 Kurt Hornik |
2325 | 2 ## |
2313 | 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. | |
2313 | 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/>. | |
2271 | 18 |
3361 | 19 ## -*- texinfo -*- |
20 ## @deftypefn {Function File} {} rindex (@var{s}, @var{t}) | |
6139 | 21 ## Return the position of the last occurrence of the character string |
22 ## @var{t} in the character string @var{s}, or 0 if no occurrence is | |
20374
df437a52bcaf
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
23 ## found. |
df437a52bcaf
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
24 ## |
df437a52bcaf
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
25 ## @var{s} may also be a string array or cell array of strings. |
13289
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
26 ## |
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
27 ## For example: |
3426 | 28 ## |
3361 | 29 ## @example |
9051
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
30 ## @group |
3361 | 31 ## rindex ("Teststring", "t") |
32 ## @result{} 6 | |
9051
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
33 ## @end group |
3361 | 34 ## @end example |
3426 | 35 ## |
13289
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
36 ## The @code{rindex} function is equivalent to @code{index} with |
17281
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
14363
diff
changeset
|
37 ## @var{direction} set to @qcode{"last"}. |
13289
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
38 ## |
6139 | 39 ## @seealso{find, index} |
3361 | 40 ## @end deftypefn |
2271 | 41 |
5428 | 42 ## Author: Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> |
2355 | 43 ## Adapted-By: jwe |
13289
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
44 ## This is patterned after the AWK function of the same name. |
2314 | 45 |
2311 | 46 function n = rindex (s, t) |
2271 | 47 |
48 if (nargin != 2) | |
6046 | 49 print_usage (); |
2271 | 50 endif |
51 | |
6139 | 52 n = index (s, t, "last"); |
3911 | 53 |
2271 | 54 endfunction |
7411 | 55 |
13289
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
56 |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
57 %!assert (rindex ("foobarbaz", "b"), 7) |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
58 %!assert (rindex ("foobarbaz", "o"), 3) |
7411 | 59 |
13289
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
60 %!test |
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
61 %! str = char ("Hello", "World", "Goodbye", "World"); |
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
62 %! assert (rindex (str, "o"), [5; 2; 3; 2]); |
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
63 %! str = cellstr (str); |
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
64 %! assert (rindex (str, "o"), [5; 2; 3; 2]); |
7411 | 65 |
20038
9fc020886ae9
maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents:
19898
diff
changeset
|
66 ## Test input validation |
13289
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
67 %!error rindex () |
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
68 %!error rindex ("foo") |
1a6537dbce7b
Expand index,rindex functions to accept char array inputs
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
69 %!error rindex ("foo", "bar", "last") |
7411 | 70 |