Scilab 6.0.2
- Scilabヘルプ
- 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
文字列を比較 (大文字小文字を区別) This function is obsolete.
呼び出し手順
res = strcmpi(string_one,string_two)
引数
- string_one
文字列または文字列の行列
- string_two
文字列または文字列の行列
- res
整数の行列.
説明
res = strcmpi(string_one, string_two)
は,
文字列の間の関係を示す内部的な値を返します.
2つの文字列は辞書式順序により
比較されます.
string_one
が string_two
に等しい場合(大文字小文字を区別しません), 値は
0
となり,
string_one
が
string_two
より大きい場合に1
,
それ以外は-1
となります.
This function is obsolete. Please use strcmp(s1,s1,"i") instead. |
例
TXT1 = ['scilab','SciLab';'Strcmp','STRcmp']; TXT2 = ['ScIlAb','sciLab';'sTrCmP','StrCMP']; strcmpi(TXT1,TXT2) strcmpi(TXT1,'scilab')
History
バージョン | 記述 |
6.0 | Function tagged as obsolete. Will be removed from Scilab 6.1 |
Report an issue | ||
<< strcmp | Strings | strcspn >> |