1 <?xml version="1.0" encoding="UTF-8"?>
4 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
5 * Copyright (C) INRIA -
7 * Copyright (C) 2012 - 2016 - Scilab Enterprises
9 * This file is hereby licensed under the terms of the GNU GPL v2.0,
10 * pursuant to article 5.3.4 of the CeCILL v.2.1.
11 * This file was originally licensed under the terms of the CeCILL v2.1,
12 * and continues to be available under such terms.
13 * For more information, see the COPYING file which you should have received
14 * along with this program.
18 <refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" xml:lang="ja" xml:id="strcmpi">
22 <refname>strcmpi</refname>
25 文字列を比較 (大文字小文字を区別) <emphasis role="bold">This function is obsolete.</emphasis>
34 <synopsis>res = strcmpi(string_one,string_two)</synopsis>
46 <term>string_one</term>
50 <para>文字列または文字列の行列</para>
58 <term>string_two</term>
62 <para>文字列または文字列の行列</para>
90 <code>res = strcmpi(string_one, string_two)</code>は,
92 文字列の間の関係を示す内部的な値を返します.
94 2つの文字列は<emphasis role="bold">辞書式順序</emphasis>により
102 <varname>string_one</varname>が <varname>string_two</varname>
104 に等しい場合(大文字小文字を区別しません), 値は
106 <literal>0</literal> となり,
108 <varname>string_one</varname>が
110 <varname>string_two</varname>より大きい場合に<literal>1</literal>,
112 それ以外は<literal>-1</literal>となります.
117 This function is obsolete. Please use <link linkend="strcmp">strcmp(s1,s1,"i")</link> instead.
125 <programlisting role="example"><![CDATA[
126 TXT1 = ['scilab','SciLab';'Strcmp','STRcmp'];
127 TXT2 = ['ScIlAb','sciLab';'sTrCmP','StrCMP'];
129 strcmpi(TXT1,'scilab')
134 <refsection role="see also">
138 <simplelist type="inline">
142 <link linkend="strcat">strcat</link>
148 <link linkend="strcmp">strcmp</link>
157 <title>History</title>
160 <revnumber>6.0</revnumber>
162 Function tagged as obsolete. Will be removed from Scilab 6.1