string操作

 favouriteNum.innerHTML = favouriteNum.innerHTML.replace(reg, function($1,$2){
                        var num = $2-0 + 1;
                         return '+'+num+'+';
                     });

 

1.indexOf()

定位字符串中某制定字符首次出现的位置

 

2.match()

用来查找字符串中特定的字符,并且如果找到的话,则返回这个字符,找不到返回null

 

3.replace()

使用某些字符替代另一些字符

var str="Visit Microsoft!"
document.write(str.replace(/Microsoft/,"W3School"))

 输出:Visit W3School! 

 

4.计算字符串长度

var txt = 'hello word!';
alert(txt.length);
 

 

5.toUpperCase()

将字符串转为大小写

var txt="Hello world!"
document.write(txt.toUpperCase())

你可能感兴趣的:(String)