📌  相关文章
📜  获取字符串 js 中的最后一个单词 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:17.977000             🧑  作者: Mango

代码示例6
// strips all punctuation and returns the last word of a string
// hyphens (-) aren't stripped, add the hyphen to the regex to strip it as well
function lastWord(words) {
    let n = words.replace(/[\[\]?.,\/#!$%\^&\*;:{}=\\|_~()]/g, "").split(" ");
    return n[n.length - 1];
}