Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript get last word in string

// 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];
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #javascript #word #string
ADD COMMENT
Topic
Name
8+7 =