“Comment trouver le dernier mot d'une chaîne en javascript” Réponses codées

javascript obtient le dernier caractère en chaîne

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

javascript obtient le dernier caractère de la chaîne

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

Comment trouver le dernier mot d'une chaîne en 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

Réponses similaires à “Comment trouver le dernier mot d'une chaîne en javascript”

Questions similaires à “Comment trouver le dernier mot d'une chaîne en javascript”

Plus de réponses similaires à “Comment trouver le dernier mot d'une chaîne en javascript” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code