Using RegExp
and ^
to ensure it is the prefix and not just somewhere in the string:
var arr = ['a1', 'a2', 'a54a'];
for(var i = 0, len = arr.length; i < len; i++) {
arr[i] = arr[i].replace(/^a/, '');
}
arr; // '1,2,54a' removing the 'a' at the begining
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…