“Como encontrar a última palavra de uma string em javascript” Respostas de código

JavaScript Obtenha o último caractere em string

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

JavaScript Obtenha o último personagem da string

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

Como encontrar a última palavra de uma string em 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

Respostas semelhantes a “Como encontrar a última palavra de uma string em javascript”

Perguntas semelhantes a “Como encontrar a última palavra de uma string em javascript”

Mais respostas relacionadas para “Como encontrar a última palavra de uma string em javascript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código