“JavaScript Endswith” Code-Antworten

JavaScript Endswith

"Hello world".endsWith("world");//true
"Hello world".endsWith("Hello");//false
Dennis "Awesome" Rosenbaum

JavaScript überprüfen, ob die Zeichenfolge mit endet

function endsWith(str, suffix) {
    return str.indexOf(suffix, str.length - suffix.length) !== -1;
}

endsWith("hello young man","man");//true
endsWith("hello young man","boy");//false
Grepper

endet mit()

var str = "Hello world, welcome to the universe.";
var n = str.endsWith("universe.");//returns true
Cute Chinchilla

JavaScript String endswith () Beispiele

JavaScript startsWith() Case sensitive Example
const text = 'Hello, Welcome to JavaScript World';
console.log(text.endsWith('World')); // true
console.log(text.endsWith('world')); // false
Gorgeous Gazelle

Wie man herausfindet, mit welchem ​​String in JavaScript endet

function isJS(path) {
	return /jsx?$/.test(path)
}
TechWhizKid

So vergleichen Sie eine Zeichenfolge mit ihrem Ende in JavaScript

function solution(str, ending){
  return str.indexOf(ending, str.length - ending.length) !== -1;
}
TechWhizKid

Ähnliche Antworten wie “JavaScript Endswith”

Fragen ähnlich wie “JavaScript Endswith”

Weitere verwandte Antworten zu “JavaScript Endswith” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen