去除字符串中的所有空格:
str=str.replace(/\s*/g,"");
判断字符串中是否含中文:
if(/[\u4E00-\u9FA5]+/.test(str))
字符串首字母大写:
str=str.substring(0, 1).toUpperCase() + str.substring(1);
将两个或多个字符的文本组合起来,返回一个新的字符串。
var a = "hello";
var b = ",world";
var c = a.concat(b);返回字符串中一个子串第一处出现的索引(从左到右搜索)。如果没有匹配项,返回 -1 。
str="hello";
var index=str.indexOf("e"); // index=1
替换字符串中的指定字符
str="hello"
str=str.replace(/l/g,'m'); //str="hemmo"
通过标识截取特定字符串
str="hello world,66666"
str2=str.split(","); //以逗号分割
得到str2=["hello world","66666"]
截取两个标识之间的内容
var relink="http://www.baidu.com/video/10255123.html";
var re=relink.substring(relink.lastIndexOf('/')+1,relink.lastIndexOf('.'));
console.log(re); //102555123