// 正则提取字符串中的小数 str.replace(/[^\d.]/g, "")
// 正则表达式 开头:^ 结尾:$ var str='&12abd3_3iw;'; var regex=/^&.*;$/; var result=regex.test(str);