5185
|
1 ## Copyright (C) 2000 Bill Lash |
|
2 ## |
5186
|
3 ## This file is part of Octave. |
5185
|
4 ## |
5186
|
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. |
5185
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
5186
|
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. |
5185
|
19 |
5186
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} strcmpi (@var{s1}, @var{s2}) |
5185
|
22 ## Compare two strings, ignoring case, returning 1 if |
|
23 ## they are the same, and 0 otherwise. |
|
24 ## |
|
25 ## Note: For compatibility with Matlab, Octave's strcmpi function |
|
26 ## returns 1 if the strings are equal, and 0 otherwise. This is |
|
27 ## just the opposite of the corresponding C library function. |
5186
|
28 ## @end deftypefn |
5185
|
29 |
|
30 ## Author: Bill Lash <lash@tellabs.com> |
5186
|
31 ## Adapted-by: jwe |
5185
|
32 |
|
33 function status = strcmpi(s1, s2) |
|
34 |
5186
|
35 if (nargin == 2) |
|
36 status = (isstr (s1) && isstr(s2) && strcmp (upper (s1), upper (s2))); |
|
37 else |
5185
|
38 usage ("strcmpi (s, t)"); |
|
39 endif |
|
40 |
|
41 endfunction |
|
42 |