【JS】用正则提取字符串中最后出现的数字
2018-07-12 本文已影响0人
KimYYX
/**
* 想把字符串中的 11423 提取出来
*/
const str = 'a1b2c3d11423e'
const result = str.match(/(\d+)[^0-9]*$/)[1]
/**
* 想把字符串中的 11423 提取出来
*/
const str = 'a1b2c3d11423e'
const result = str.match(/(\d+)[^0-9]*$/)[1]