“JS Ostatnie słowo w ciągu” Kod odpowiedzi

JavaScript Zdobądź ostatnie słowo w ciągu

// 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

JS Ostatnie słowo w ciągu

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

Odpowiedzi podobne do “JS Ostatnie słowo w ciągu”

Pytania podobne do “JS Ostatnie słowo w ciągu”

Więcej pokrewnych odpowiedzi na “JS Ostatnie słowo w ciągu” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu