返回到文章

采纳

编辑于 2年前

js拆分字符串和数字

javascript js

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

在线运行