Answers for "javascript get last index of string"

30

javascript get last character in string

var hello = "Hello World";
var lastCharOfHello=hello.slice(-1);//d
Posted by: Guest on August-01-2019
0

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];
}
Posted by: Guest on June-24-2020
0

lastindexof() javascript

'canal'.lastIndexOf('a');     // retorna 3
'canal'.lastIndexOf('a', 2);  // retorna 1
'canal'.lastIndexOf('a', 0);  // retorna -1
'canal'.lastIndexOf('x');     // retorna -1
'canal'.lastIndexOf('c', -5); // retorna 0
'canal'.lastIndexOf('c', 0);  // retorna 0
'canal'.lastIndexOf('');      // retorna 5
'canal'.lastIndexOf('', 2);   // retorna 2
Posted by: Guest on May-15-2020
1

lastindexof js

string.lastIndexOf("subString")
Posted by: Guest on May-02-2020

Code answers related to "javascript get last index of string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language