有关js-字符串大小写转换

有关js-字符串大小写转换
替换内容
 
replace() 方法在字符串中用某些字符替换另一些字符。
 
实例
 
str="Please visit Microsoft!"
var n=str.replace("Microsoft","Runoob");
 
 
字符串大小写转换
 
字符串大小写转换使用函数 toUpperCase() / toLowerCase():
 
实例
var txt="Hello World!";       // String
var txt1=txt.toUpperCase();   // txt1 文本会转换为大写
var txt2=txt.toLowerCase();   // txt2 文本会转换为小写
 
 
字符串转为数组
 
字符串使用split()函数转为数组:
 
实例
txt="a,b,c,d,e"   // String
txt.split(",");   // 使用逗号分隔
txt.split(" ");   // 使用空格分隔
txt.split("|");   // 使用竖线分隔 

推荐阅读