Come verificare se una stringa contiene una sottostringa in JavaScript?


7427

Di solito mi aspetterei un String.contains()metodo, ma non sembra essercene uno.

Qual è un modo ragionevole per verificare questo?

Risposte:


13776

ECMAScript 6 introdotto String.prototype.includes:

const string = "foo";
const substring = "oo";

console.log(string.includes(substring));

includes non ha il supporto per Internet Explorer , però. Negli ambienti ECMAScript 5 o precedenti, utilizzare String.prototype.indexOf, che restituisce -1 quando non è possibile trovare una sottostringa:

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

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


25
Non mi piace neanche IE, ma se hai due funzioni sostanzialmente identiche e una è meglio supportata dell'altra, penso che dovresti scegliere quella meglio supportata? Così indexOf()è ...
rob74

3
È possibile effettuare una ricerca senza distinzione tra maiuscole e minuscole?
Eric McWinNEr,

18
string.toUpperCase().includes(substring.toUpperCase())
Rodrigo Pinto,

2
@EricMcWinNEr /regexpattern/i.test(str)-> i flag sta per insensibilità al maiuscolo
Codice Maniac

Questo non sembra funzionare per me in Google App Script.
Ryan,

561

C'è un String.prototype.includesin ES6 :

"potato".includes("to");
> true

Si noti che ciò non funziona in Internet Explorer o in altri browser precedenti senza supporto ES6 incompleto o incompleto. Per farlo funzionare nei vecchi browser, potresti voler utilizzare un transpiler come Babel , una libreria di shim come es6-shim o questo polyfill di 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;
    }
  };
}

3
Basta farlo "potato".includes("to");ed eseguirlo attraverso Babel.
Derk Jan Speelman,

1
include non è supportato da IE purtroppo
Sweet Chilly Philly,

@eliocs puoi rispondere a questo. Ricevo un messaggio qualsiasi. Necessità di modificare il messaggio stackoverflow.com/questions/61273744/...
sejn

1
un altro vantaggio è che distingue tra maiuscole e minuscole. "boot".includes("T")èfalse
Jonatas CD

47

Un'altra alternativa è KMP (Knuth – Morris – Pratt).

L'algoritmo KMP cerca una sottostringa lunghezza-m in una stringa lunghezza- n nel tempo O ( n + m ) nel caso peggiore , rispetto al caso peggiore di O ( nm ) per l'algoritmo ingenuo, quindi l'utilizzo di KMP può sii ragionevole se ti preoccupi della complessità nel caso peggiore.

Ecco un'implementazione JavaScript di Project Nayuki, tratta da 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


11
Questa è eccessiva, ma comunque una risposta interessante
Faissaloo
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.