Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.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.
See the recommended documentation of this function

Scilab manual >> Strings > strcmp

strcmp

compare character strings

Calling Sequence

res = strcmp(string_one,string_two,[,'i'])

Arguments

string_one

A character string or matrix of character strings

string_two

A character string or matrix of character strings

'i'

parameter to do stricmp (case independent), default value is 's'

res

matrix.

Description

res = strcmp(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'];
strcmp(TXT1,TXT2)
strcmp(TXT1,'scilab')
strcmp(TXT1,'SciLab')
strcmp(TXT1,TXT2,'i')

See Also

<< strchr Strings strcmpi >>

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:
Wed Jan 26 16:23:46 CET 2011