“JavaScript bekommen das letzte Wort in String” Code-Antworten

JavaScript Holen Sie sich das letzte Zeichen in String

var hello = "Hello World";
var lastCharOfHello=hello.slice(-1);//d
Grepper

JavaScript erhalten das letzte Zeichen der Zeichenfolge

var str = "Hello";
var newString = str.substring(0, str.length - 1); //newString = Hell
Grepper

Holen Sie sich das letzte Wort in String JS

function test(words) {
    var n = words.split(" ");
    return n[n.length - 1];
}
Solstice

So erhalten Sie die letzte Zeichenfolge in JavaScript

'abc'.slice(-2);
Restu Wahyu Saputra

So finden Sie das letzte Wort einer Zeichenfolge in JavaScript

// To get the last "Word" of a string use the following code :

let string = 'I am a string'

let splitString = string.split(' ')

let lastWord = splitString[splitString.length - 1]
console.log(lastWord)

/*
Explanation : Here we just split the string whenever there is a space and we get an array. After that we simply use .length -1 to get the last word contained in that array that is also the last word of the string.
*/
Grim_Reaper

JavaScript bekommen das letzte Wort 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];
}
Web Surfer

Ähnliche Antworten wie “JavaScript bekommen das letzte Wort in String”

Fragen ähnlich wie “JavaScript bekommen das letzte Wort in String”

Weitere verwandte Antworten zu “JavaScript bekommen das letzte Wort in String” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen