一些关于字符串中存在特殊字符判断的方法

直接上代码:


	var word = "fdc-number=";	

	if(word.indexOf("=")>0){
		var Rex = /^fdc.+=/;
				res = word.match(Rex);
		console.log(res[0].substring(0,res[0].length-1));			
	}else{
		var Rex = /^fdc.*$/;
				res = word.match(Rex);
		console.log(res[0]);		
	}

当做是记录吧~

posted @ 2016-01-19 13:58  SmallW  阅读(1051)  评论(0编辑  收藏  举报