正则表达式

1、写一个function,清除字符串前后的空格。(兼容所有浏览器)

function trim(str) {
    if (str && typeof str === "string") {
        return str.replace(/(^\s*)|(\s*)$/g,""); //去除前后空白符
    }
}
trim(' hello li ')

2、使用正则表达式验证邮箱格式

var reg = /^(\w)+(\.\w+)*@(\w)+((\.\w{2,3}){1,3})$/;
var email = "[email protected]";
console.log(reg.test(email)); 

3、验证手机号

var numreg = /^[1][3,4,5,6,7,8,9][0-9]{9}$/; //手机号码正则
var tel = 13211111111;
numreg.test(tel);

4、验证金额

    var value = '.01234.12.1';
    value = value.replace(/[^\d.]/g, "");  //清除“数字”和“.”以外的字符  
    value = value.replace(/^\./g, '0.'); //第一个输入. 则自动变为0.
    value = value.replace(".", "$#$").replace(/\./g, "").replace("$#$", "."); //保证.只出现一次,而不能出现两次以上 2..    2.2.2
    value = value.replace(/^(\-)*(\d+)\.(\d\d).*$/, '$1$2.$3'); //只能输入两个小数  
    if ((value.indexOf(".") < 0||value.indexOf(".") > 1) && value != "") { //首位不能为类似于 01、02的金额 
      value = parseFloat(value);
    } 
    console.log(value); 

你可能感兴趣的:(正则表达式)