“JS String enthält” Code-Antworten

Überprüfen Sie, ob JavaScript Substring

const string = "javascript";
const substring = "script";

console.log(string.includes(substring));  //true
Batman

JS String enthält

'Bandeira do Brasil'.includes('brasil'); // returns false
'Bandeira do Brasil'.includes('Brasil'); // returns true
GutoTrosla

JS String enthält

var string = "foo";
var substring = "oo";

console.log(string.indexOf(substring) !== -1);
2 Programmers 1 Bug

JS String enthält

let example = "Example String!";
let ourSubstring = "Example";

if (str.includes(ourSubstring, 7)) {
	console.log("The word Example is in the string.");
} else {
	console.log("The word Example is not in the string");
}
cadot.eu

JS String enthält

let example = "Example String!";
let ourSubstring = "Example";

if (example.indexOf(ourSubstring) != 0) {
	console.log("The word Example is in the string.");
} else {
	console.log("The word Example is not in the string.");
}
cadot.eu

JS String enthält

let str = "Example String!";

/Example/.test(str);
cadot.eu

Ähnliche Antworten wie “JS String enthält”

Fragen ähnlich wie “JS String enthält”

Weitere verwandte Antworten zu “JS String enthält” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen