“JavaScript Das letzte Wort einer Zeichenfolge” Code-Antworten

JavaScript Holen Sie sich das letzte Zeichen in String

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

JavaScript Das letzte Wort einer Zeichenfolge

// Get the last word of a string.

let str = "What I hate most in the world is fanaticism.";

// 1) The slice() method: without Considering the punctuation marks
str.slice(str.lastIndexOf(' ')); // => 'fanaticism.'

// 2) the spit() method():
let arr = str.split(' ');
arr[arr.length - 1]; // => 'fanaticism.'


// Considering the punctuation marks at the end of the string
str.match(/\b(\w+)\W*$/)[1]; // => 'fanaticism'
codeager

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

Holen Sie sich das letzte Zeichen von String JavaScript

str.charAt(str.length-1) 
Anthony Smith

Ähnliche Antworten wie “JavaScript Das letzte Wort einer Zeichenfolge”

Fragen ähnlich wie “JavaScript Das letzte Wort einer Zeichenfolge”

Weitere verwandte Antworten zu “JavaScript Das letzte Wort einer Zeichenfolge” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen