📅  最后修改于: 2023-12-03 14:42:27.215000             🧑  作者: Mango
toLocaleLowerCase()
方法返回当前字符串转换为小写的一个新字符串,根据环境(即语言环境)来进行转换,例如将大写的字母转换为小写的字母。
该方法是 toLowerCase()
方法的区域敏感版本,因为有一些语言环境中,某些字符的小写形式可能与其他语言环境中的不同。
str.toLocaleLowerCase()
该方法无需参数。
返回当前字符串的一个新字符串,转换为小写形式。
let str = "Hellö WÖrld!";
let lowerCase = str.toLocaleLowerCase();
console.log(lowerCase); // 输出结果为: hellö wörld!
toLocaleLowerCase()
方法是区域敏感的,如在土耳其文中,字符 'I'
会被认为是小写的 'ı'
,而不是大写的 'i'
。toLocaleLowerCase()
方法不会更改原字符串,而是返回一个新的字符串。