regex 在正则表达式和JS中获取最后一个点后的单词

9rnv2umw  于 2022-11-18  发布在  其他
关注(0)|答案(1)|浏览(113)

如何使用Regex和JS获取最后一个点后面的单词?

const yeah = 'SampleLibrary/21.0/Best.colour'

const hello = yeah.replace('(?<=\.|^)[^.]+$')

console.log(hello)

预期输出

colour

oug3syen

oug3syen1#

这应该可行:

const yeah = 'SampleLibrary/21.0/Best.colour'
const hello = yeah.replace(/^.+\./, '');
console.log(hello)

相关问题