localeCompare()是TypeScript中的內置函數,用於獲取數字,該數字指示參考字符串是按排序順序排在給定字符串之前還是之後還是與給定字符串相同。句法:
string.localeCompare( param )
參數:如上所述,該方法接受單個參數。
- param:此參數是要與字符串對象進行比較的字符串。
返回值:此方法返回流。
- 0 如果字符串完全匹配,則返回。
- 1 如果字符串不匹配並且參數值在字符串對象的值之前,則返回。
- -如果字符串不匹配並且參數值在字符串對象的值之後,則返回負值。
範例1:
的JavaScript
<script>
// Original strings
var str1 = new String('Geeksforgeeks');
var index = str1.localeCompare("Geeksforgeeks");
// Use of String localeCompare() Method
console.log(index);
</script>
輸出:
0
範例2:
的JavaScript
<script>
// Original strings
var str1 = new String('Geeksforgeeks');
var index = str1.localeCompare("Geeks");
// Use of String localeCompare() Method
console.log(index);
</script>
輸出:
1
相關用法
- Javascript string.localeCompare()用法及代碼示例
- Typescript String charAt()用法及代碼示例
- Typescript String charCodeAt()用法及代碼示例
- Typescript String concat()用法及代碼示例
- Typescript String indexOf()用法及代碼示例
- Typescript String lastIndexOf()用法及代碼示例
- Typescript String replace()用法及代碼示例
- Typescript String search()用法及代碼示例
- Typescript String slice()用法及代碼示例
- Typescript String substring()用法及代碼示例
- Typescript String valueOf()用法及代碼示例
- Typescript String toString()用法及代碼示例
- Typescript String toUpperCase()用法及代碼示例
- Typescript String toLowerCase()用法及代碼示例
- Typescript String toLocaleUpperCase()用法及代碼示例
- Typescript String toLocaleLowerCase()用法及代碼示例
- Typescript String substr()用法及代碼示例
- Typescript String split()用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 TypeScript | String localeCompare() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。