采纳
var num = "abc123456"; var r=num.match(/^[a-z|A-Z]+/gi); document.write(r+"<br/>"); r=num.match(/\d+$/gi); document.write(r);
在线运行