toLocaleLowerCase()是TypeScript中的內置函數,用於在遵守當前語言環境的同時將字符串中的字符轉換為小寫。
用法:
string.toLocaleLowerCase( )
參數:此方法不接受任何參數。
返回值:此方法以小寫形式返回當前語言環境的字符串。
下麵的示例說明TypeScript中的String toLocaleLowerCase()方法
範例1:
的JavaScript
<script>
// Original strings
var str = "Geeksforgeeks - Best Platform";
// use of String toLocaleLowerCase() Method
var newstr = str.toLocaleLowerCase()
console.log(newstr);
</script>
輸出:
geeksforgeeks - best platform
範例2:
的JavaScript
<script>
// Original strings
var str = "TypeScript - String toLocaleLowerCase()";
// use of String toLocaleLowerCase() Method
var newstr = str.toLocaleLowerCase()
console.log(newstr);
</script>
輸出:
typescript - string tolocalelowercase()
相關用法
- JavaScript String.prototype.toLocaleLowerCase()用法及代碼示例
- Typescript String charAt()用法及代碼示例
- Typescript String charCodeAt()用法及代碼示例
- Typescript String concat()用法及代碼示例
- Typescript String indexOf()用法及代碼示例
- Typescript String lastIndexOf()用法及代碼示例
- Typescript String localeCompare()用法及代碼示例
- 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 substr()用法及代碼示例
- Typescript String split()用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 TypeScript | String toLocaleLowerCase() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。