Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.0 - English

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.

Scilab help >> Strings > strcmpi

strcmpi

compare character strings (case independent)

Calling Sequence

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

matrix.

Description

res = strcmpi(string_one,string_two) returns an integral value indicating the relationship between the strings.

A value greater than zero indicates that the first character that does not match has a greater value in string_one than in string_two

And a value less than zero indicates the opposite.

Examples

TXT1 = ['scilab','SciLab';'Strcmp','STRcmp'];
TXT2 = ['ScIlAb','sciLab';'sTrCmP','StrCMP'];
strcmpi(TXT1,TXT2)
strcmpi(TXT1,'scilab')

See Also

  • strcat — concatenate character strings
  • strcmp — compare character strings
Report an issue
<< strcmp Strings strcspn >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Oct 01 17:34:55 CEST 2012