标签:style http java color os io
var str = "helloworld";
var strObj = new String("hello world");
alert (strObj.charAt(0)); // ‘h‘
alert (strObj.charCodeAt(1)); // 101 即 ‘e‘ 的 unicode编码
alert(strObj[1]); // ‘e‘, ES5
var str2 = strObj.concat(" ","china"); // "hello world china";
alert(strObj); // "hello world";
alert(strObj.slice(3)); // "lo world";
alert(strObj.substring(3)) ;// "lo world";
alert(strObj.substr()); // "lo world";
alert(strObj.slice(3,7)); // "lo w"; 从下标3开始,到下标7之前
alert(strObj.substring(3,7)); // "hel" ;从下标3, 到下标7之前
alert(strObj.substr(3,7)); // "lo worl" 从下标3开始,长度为7
alert(strObj.slice(3,-3)) ; // "lo wo"; 第二个参数 -3 被转换成 -3 + str.length = 8; 来对待。
alert(strObj.substring(3,-3)); // "hel"; 第二个参数 -3 被转换成 0,因为 第二个参数小于第一个参数,然后它们要互换位置。
alert(strObj.substr(3,-3));// ""(空字符串),它会将第一个参数 3 + str.length ,然后将 第二个参数-3 转换成 0.
alert(strObj.indexOf("o")) ; //4 从前往后
alert(strObj.lastIndexOf("o")); //7 从后往前
alert(strObj.indexOf("o",6)); // 7 忽略位置6以前的(即使匹配)
alert(strObj.lastIndexOf("o",6)) ; // 4 忽略位置6以后的(即使匹配)
var strValue = " hello world ";
alert(strValue.trim()); // “hello world”
alert(strObj.toLowerCase()); //"hello world"
alert(strObj.toUpperCase()); // "HELLO WORLD";
alert(strObj.toLocaleLowerCase()); // "hello world“
alert(strObj.toLocaleUpperCase()); // ”HELLO WORLD“
var text = "cat, bat, sat, rat";
var matches = text.match(/.at/);
alert(matches.index); // 0
alert(matches[0]) ; // cat
alert(matches.lastIndex); // 0
var pos = text.search(/at/);
alert(pos); // 1 返回第一个匹配的位置
var result1 = text.replace("at","ond"); // "cond, bat, sat, rat";
var result2 = text.replace(/at/g,"ond"); // ”cond, bond, sond, rond“;
text.replace(/\s/g, ""); //用 ”“(空字符串 )替换 所有的 空格,制表符,换行。
var a = "hellod a sad asdsa dsa das dsa dsa dsa ";
console.log(a.replace(/\s/g,""));
//hellodasadasdsadsadasdsadsadsa VM205:3var a = "hellod a sad asdsa dsa das dsa dsa dsa ";
console.log(a.replace(" ",""));
//helloda sad asdsa dsa das dsa dsa dsa
function htmlEscape(text){
return text.replace(/[<>"&]/g,function(match, pos, originalText){
switch(match){
case "<":
return "<";
case ">":
return ">";
case "&":
return "&";
case "\"":
return """;
}
});
}
var colorText = "red,blue,green,yellow";
var c1 = colorText.split(","); //["red","blue","green","yellow"];
var c2 = colorText.split(”,“,2); //["red","blue"]; 第二个参数返回的数组的大小。
var strVal = "yellow";
alert(strVal.localeCompare("black"));// 1
alert(strVal.localeCompare("yellow"));// 0
alert(strVal.localeCompare("zoo")); // -1 或其他负数
JavaScript中的String,布布扣,bubuko.com
标签:style http java color os io
原文地址:http://www.cnblogs.com/iceseal/p/3858811.html