Horje
JavaScript the last word of a string Code Example
javascript get last character in string
var hello = "Hello World";
var lastCharOfHello=hello.slice(-1);//d
javascript get last word 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];
}
JavaScript the last word of a string
// 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'
get last character of string javascript
str.charAt(str.length-1) 




Javascript

Related
enum in javascript es6 Code Example enum in javascript es6 Code Example
document get all elements by property has white color Code Example document get all elements by property has white color Code Example
Get value from ionRangeSlider in jquery Code Example Get value from ionRangeSlider in jquery Code Example
how to empty nodeList Code Example how to empty nodeList Code Example
vue directive parameter Code Example vue directive parameter Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7