“Letzter Index der String in JavaScript” Code-Antworten

js letztes Index von

const str = "Users/Edit/12345";
let idx = str.lastIndexOf("/"); // returns 10
idx = str.lastIndexOf("x"); // returns -1

idx = str.lastIndexOf("Edit") // returns 6
idx = str.lastIndexOf("edit") // returns -1 -- case sensitive

// add "from" parameter
// the search happens backwards, starting at the provided from parameter
idx = str.lastIndexOf("s"); // returns 4
idx = str.lastIndexOf("s", 3); // returns 1
Chris PA

JavaScript letzter Zeichen einer Zeichenfolge

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
Gizgi Online Strateji Oyunu

Holen Sie sich das letzte Zeichen von String JavaScript

str.charAt(str.length-1) 
Anthony Smith

lastIndexof

var numbers = [2, 5, 9, 2];
numbers.lastIndexOf(2);     // 3
numbers.lastIndexOf(7);     // -1
numbers.lastIndexOf(2, 3);  // 3
numbers.lastIndexOf(2, 2);  // 0
numbers.lastIndexOf(2, -2); // 0
numbers.lastIndexOf(2, -1); // 3
Witty Whale

Letzter Index der String in JavaScript

str[str.length-1]
Roja Mogili

Ähnliche Antworten wie “Letzter Index der String in JavaScript”

Fragen ähnlich wie “Letzter Index der String in JavaScript”

Weitere verwandte Antworten zu “Letzter Index der String in JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen