Відповіді:
ECMAScript 6 запроваджено String.prototype.includes
:
const string = "foo";
const substring = "oo";
console.log(string.includes(substring));
includes
не має підтримки Internet Explorer . У середовищі ECMAScript 5 або старіших версіях використовується String.prototype.indexOf
, яка повертає -1, коли підстроку не можна знайти:
var string = "foo";
var substring = "oo";
console.log(string.indexOf(substring) !== -1);
string.toUpperCase().includes(substring.toUpperCase())
/regexpattern/i.test(str)
-> Я прапор - це нечутливість до справи
Є String.prototype.includes
в ES6 :
"potato".includes("to");
> true
Зауважте, що це не працює в Internet Explorer або інших старих браузерах, що не мають або неповної підтримки ES6. Щоб він працював у старих браузерах, ви можете скористатися транспілером, як Babel , бібліотекою shim, як es6-shim , або цим поліфілом із MDN :
if (!String.prototype.includes) {
String.prototype.includes = function(search, start) {
'use strict';
if (typeof start !== 'number') {
start = 0;
}
if (start + search.length > this.length) {
return false;
} else {
return this.indexOf(search, start) !== -1;
}
};
}
"potato".includes("to");
і запустіть його через Вавілон.
"boot".includes("T")
єfalse
Ще одна альтернатива - KMP (Knuth – Morris – Pratt).
Алгоритм KMP шукає підрядку довжини m в рядку довжини n в найгіршому випадку O ( n + m ) часу, порівняно з найгіршим випадком O ( n ⋅ m ) для наивного алгоритму, тому використання KMP може будьте розумні, якщо ви піклуєтесь про найгірші часові складності.
Ось реалізація JavaScript від проекту Nayuki, взята з https://www.nayuki.io/res/knuth-morris-pratt-string-matching/kmp-string-matcher.js :
// Searches for the given pattern string in the given text string using the Knuth-Morris-Pratt string matching algorithm.
// If the pattern is found, this returns the index of the start of the earliest match in 'text'. Otherwise -1 is returned.
function kmpSearch(pattern, text) {
if (pattern.length == 0)
return 0; // Immediate match
// Compute longest suffix-prefix table
var lsp = [0]; // Base case
for (var i = 1; i < pattern.length; i++) {
var j = lsp[i - 1]; // Start by assuming we're extending the previous LSP
while (j > 0 && pattern.charAt(i) != pattern.charAt(j))
j = lsp[j - 1];
if (pattern.charAt(i) == pattern.charAt(j))
j++;
lsp.push(j);
}
// Walk through text string
var j = 0; // Number of chars matched in pattern
for (var i = 0; i < text.length; i++) {
while (j > 0 && text.charAt(i) != pattern.charAt(j))
j = lsp[j - 1]; // Fall back in the pattern
if (text.charAt(i) == pattern.charAt(j)) {
j++; // Next char matched, increment position
if (j == pattern.length)
return i - (j - 1);
}
}
return -1; // Not found
}
console.log(kmpSearch('ays', 'haystack') != -1) // true
console.log(kmpSearch('asdf', 'haystack') != -1) // false
indexOf()
це ...