JS小写字母替换为大写字母
时间: 2024-05-29 10:08:35 浏览: 89
小写字母转换为大写字母
可以使用JavaScript语言的toUpperCase()方法来将小写字母替换为大写字母。例如,将字符串"hello world"转换为"HELLO WORLD"的代码如下:
var str = "hello world";
var newStr = str.toUpperCase();
console.log(newStr); // 输出"HELLO WORLD"
希望能帮到你!
阅读全文