假设我有以下字符串:
var text = "A_B_C_190"
我希望能够在最后提取数字(最后一个_之后的最后3个字符)
我累了 :
text.substr(text.indexOf('_'), -1)
但那让我无效
你必须使用lastIndexOf方法。
var text = "A_B_C_190"
ans = text.substr(text.lastIndexOf('_')+1)
console.log(ans)
如果要将其转换为整数,请使用parseInt(ans)
你可以使用string.prototype.split
和array.prototype.pop
:
var text = "A_B_C_190";
console.log(text.split('_').pop());