[Java] javascript怎么将小写字母转为大写

  • A+
所属分类:其他教程
摘要

20220215000146-620aed6a26184.jpg 下载附件 2023-1-4 15:23 上传

JS将小写字母转为大写的方法:
1、利用toUpperCase()函数,语法“string.toUpperCase()”;
2、利用toLocaleUpperCase()函数,语法“string.toLocaleUpperCase()”。

[Java] javascript怎么将小写字母转为大写

20220215000146-620aed6a26184.jpg

2023-1-4 15:23 上传

本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。
javascript将小写字母转为大写的方法

方法1:利用toUpperCase()
toUpperCase() 方法用于把字符串转换为大写。

语法:
string.toUpperCase()
返回值:一个新的字符串,在其中 string 的所有小写字符全部被转换为了大写字符。
var str="Hello World!" document.write(str.toUpperCase())
方法2:利用toLocaleUpperCase()
toLocaleUpperCase() 方法用于把字符串转换为大写。

语法:
string.toLocaleUpperCase()
返回值:一个新的字符串,在其中 string 的所有小写字符全部被转换为了大写字符。


注:toLocaleUpperCase() 方法按照本地方式把字符串转换为大写。只有几种语言(如土耳其语)具有地方特有的大小写映射,所有该方法的返回值通常与 toUpperCase() 一样。
var str="Hello World!" console.log(str.toLocaleUpperCase());
以上就是javascript怎么将小写字母转为大写的详细内容!

  • 我的微信公众号
  • 扫一扫关注
  • weinxin
  • 我的新浪微博号
  • 扫一扫关注
  • weinxin
小辉博客

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: