我是靠谱客的博主 朴实金毛,最近开发中收集的这篇文章主要介绍字符串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()方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部