Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

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(/(w+)W*$/)[1]; // => 'fanaticism'
Comment

Js last word in a string

String test =  "This is a sentence";
String lastWord = test.substring(test.lastIndexOf(" ")+1);
Comment

get last word in string js

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

how to get last string in javascript

'abc'.slice(-2);
Comment

how to find the last word of a string 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.
*/
Comment

get last letter of string javascript

// Get last n characters from string
var name = 'Shareek';
var new_str = name.substr(-5); // new_str = 'areek'
Comment

get last character of string javascript

str.charAt(str.length-1) 
Comment

javascript last character of a string

const myString = "linto.yahoo.com.";
const stringLength = myString.length; // this will be 16
console.log('lastChar: ', myString.charAt(stringLength - 1)); // this will be the string
 Run code snippet
Comment

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];
}
Comment

find the length and the last character of string in js

// Get The Length Of The String.
function strLength(x){
  var counter = 0;
  while(x[counter] !== undefined){
    counter++;
  }
  return counter;
}

var str = prompt("Write your string ...",''); // Get String From User.
var The_Length = strLength(str); // 
var lastChar = counter - 1; // The Index Of Last Letter.
console.log(`The Length Of Your String is ${counter}`);
console.log(`The Last Char In Your String Is ${str[lastChar]}`);
Comment

PREVIOUS NEXT
Code Example
Javascript :: javas script add list 
Javascript :: laravel json response with error code 
Javascript :: virtual dom explained 
Javascript :: toggle boolean js 
Javascript :: mongodb group by several fields 
Javascript :: js replace multiple 
Javascript :: useparams example 
Javascript :: get id of element javascript 
Javascript :: how to prevent event capturing in javascript 
Javascript :: how to add seconds to time in js 
Javascript :: deep merge nested objects javascript 
Javascript :: json limit nodejs 
Javascript :: jquery display modal bs4 
Javascript :: how to remove last element in js 
Javascript :: determine text truncate javascript 
Javascript :: join a list of strings into one string javascript 
Javascript :: javascript largest number in array 
Javascript :: wordpress not loading jquery 
Javascript :: Array Foreach Loop 
Javascript :: difference between let and var in javascript 
Javascript :: simple kick command discord.js v12 
Javascript :: aos initial configuration vue 
Javascript :: jquery header basic auth 
Javascript :: on() jquery 
Javascript :: ajax open new tab with post 
Javascript :: how to move div using jquery 
Javascript :: patch request javascript 
Javascript :: divisible by 3 javascript 
Javascript :: react lazy import non default 
Javascript :: node js return ID in postgres insert 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =