js截取字符串最后一个*后面的数据
/* js截取字符串最后一个*后面的数据 */
getDataAfterLastStar(str) {
const match = str.match(/.*\*([^*]*)$/)
return match ? match[1] : ''
},
js截取字符串最后一个*后面的数据
/* js截取字符串最后一个*后面的数据 */
getDataAfterLastStar(str) {
const match = str.match(/.*\*([^*]*)$/)
return match ? match[1] : ''
},