/**
* 想把字符串中的 11423 提取出来
*/
const str = 'a1b2c3d11423e'
const result = str.match(/(\d+)[^0-9]*$/)[1]
/**
* 想把字符串中的 11423 提取出来
*/
const str = 'a1b2c3d11423e'
const result = str.match(/(\d+)[^0-9]*$/)[1]
本文标题:【JS】用正则提取字符串中最后出现的数字
本文链接:https://www.haomeiwen.com/subject/ivrrpftx.html
网友评论