我是靠谱客的博主 朴实金毛,这篇文章主要介绍字符串toLocaleUpperCase()方法,现在分享给大家,希望可以做个参考。

Returns a new string with the uppercase transformation of the original string, according to the locale case mappings.

根据语言环境的大小写映射,返回一个具有原始字符串大写转换的新字符串。

The first parameter represents the locale, but it’s optional (and if omitted, the current locale is used):

第一个参数表示语言环境,但它是可选的(如果省略,则使用当前语言环境):

'Testing'.toLocaleUpperCase() //'TESTING'
'Testing'.toLocaleUpperCase('it') //'TESTING'
'Testing'.toLocaleUpperCase('tr') //'TESTİNG'

Similar to the toUpperCase() method, except that does not take locales into consideration.

toUpperCase()方法类似,但不考虑语言环境。

翻译自: https://flaviocopes.com/javascript-string-tolocaleuppercase/

最后

以上就是朴实金毛最近收集整理的关于字符串toLocaleUpperCase()方法的全部内容,更多相关字符串toLocaleUpperCase()方法内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(139)

评论列表共有 0 条评论

立即
投稿
返回
顶部