321
|
1 # Copyright (C) 1993, 1994 John W. Eaton |
245
|
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 the |
|
7 # Free Software Foundation; either version 2, or (at your option) any |
|
8 # later version. |
|
9 # |
|
10 # Octave is distributed in the hope that it will be useful, but WITHOUT |
|
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 # 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 |
|
17 # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
|
18 |
4
|
19 function status = strcmp (s1, s2) |
|
20 |
|
21 # usage: strcmp (s1, s2) |
|
22 # |
|
23 # Compare two strings. |
|
24 # |
|
25 # WARNING: Unlike the C function of the same name, this function |
|
26 # returns 1 for equal and zero for not equal. Why? To be compatible |
|
27 # with Matlab, of course. |
|
28 |
|
29 if (nargin != 2) |
|
30 error ("usage: strcmp (s, t)"); |
|
31 endif |
|
32 |
|
33 status = 0; |
321
|
34 if (isstr (s1) && isstr(s2)) |
|
35 len_s1 = columns (s1); |
|
36 len_s2 = columns (s2); |
|
37 if (len_s1 == len_s2) |
|
38 if (len_s1 == 0) |
|
39 status = 1; |
|
40 else |
|
41 tmp = implicit_str_to_num_ok; |
|
42 implicit_str_to_num_ok = "true"; |
|
43 status = all (s1 == s2); |
|
44 implicit_str_to_num_ok = tmp; |
|
45 endif |
|
46 endif |
4
|
47 endif |
|
48 |
|
49 endfunction |