Scilab 6.0.1
- Scilab Help
- Strings
- ascii
- asciimat
- blanks
- char
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- prettyprint
- regexp
- sci2exp
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
strcmpi
compare character strings (case independent). This function is obsolete.
Syntax
res = strcmpi(string_one, string_two)
Arguments
- string_one
a character string or matrix of character strings.
- string_two
a character string or matrix of character strings.
- res
a matrix of integers.
Description
res = strcmpi(string_one, string_two)
returns an
integral value indicating the relationship between the strings. The two strings are compared in using the lexicographical order.
The value is 0
if string_one
is equal to string_two
(case independently),
1
if string_one
is greater than string_two
and -1
else.
This function is obsolete. Please use strcmp(s1,s1,"i") instead. |
Examples
TXT1 = ['scilab','SciLab';'Strcmp','STRcmp']; TXT2 = ['ScIlAb','sciLab';'sTrCmP','StrCMP']; strcmpi(TXT1,TXT2) strcmpi(TXT1,'scilab')
History
Version | Description |
6.0 | Function tagged as obsolete. Will be removed from Scilab 6.1 |
Report an issue | ||
<< strcmp | Strings | strcspn >> |