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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。