StringPrototype.localeCompare(Object, Object) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した 2 つの文字列を比較し、辞書式順序での両者の関係を示す整数を返します。
この API は製品インフラストラクチャをサポートします。コードから直接使用するものではありません。
public:
static int localeCompare(System::Object ^ thisob, System::Object ^ thatob);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_localeCompare)]
public static int localeCompare (object thisob, object thatob);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_localeCompare)>]
static member localeCompare : obj * obj -> int
Public Shared Function localeCompare (thisob As Object, thatob As Object) As Integer
パラメーター
- thisob
- Object
このメソッドを実行する対象のオブジェクト。
- thatob
- Object
thisob
と比較する対象の文字列。
戻り値
thisob
が thatob
より小さい場合は負の値。thisob
が thatob
と等しい場合はゼロ。thisob
が thatob
より大きい場合は正の値。
- 属性
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET