“Última palavra JS em uma corda” Respostas de código

JavaScript Obtenha a última palavra em 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];
}
Web Surfer

Última palavra JS em uma corda

String test =  "This is a sentence";
String lastWord = test.substring(test.lastIndexOf(" ")+1);
Distinct Donkey

Respostas semelhantes a “Última palavra JS em uma corda”

Perguntas semelhantes a “Última palavra JS em uma corda”

Mais respostas relacionadas para “Última palavra JS em uma corda” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código