javascript字符串大小写转换
时间: 2023-04-28 17:02:42 浏览: 190
JS金额大小写转换
JavaScript字符串大小写转换可以使用以下方法:
1. toUpperCase()方法:将字符串中的所有字符转换为大写字母。
例如:
var str = "hello world";
var upperStr = str.toUpperCase();
console.log(upperStr); // 输出:HELLO WORLD
2. toLowerCase()方法:将字符串中的所有字符转换为小写字母。
例如:
var str = "HELLO WORLD";
var lowerStr = str.toLowerCase();
console.log(lowerStr); // 输出:hello world
3. charAt()方法和toUpperCase()方法:将字符串中指定位置的字符转换为大写字母。
例如:
var str = "hello world";
var upperChar = str.charAt().toUpperCase();
console.log(upperChar + str.slice(1)); // 输出:Hello world
4. charAt()方法和toLowerCase()方法:将字符串中指定位置的字符转换为小写字母。
例如:
var str = "HELLO WORLD";
var lowerChar = str.charAt().toLowerCase();
console.log(lowerChar + str.slice(1)); // 输出:hELLO WORLD
以上是JavaScript字符串大小写转换的几种方法,可以根据实际需求选择使用。
阅读全文