文字列に配列の同じ要素が少なくとも2つあるかどうかを確認したい
const array = ["!", "?"];
const string1 = "!hello"; // should return false
const string2 = "!hello?"; // should return false
const string3 = "!hello!"; // should return true
const string4 = "hello ??"; // should return true
const string5 = "hello ?test? foo"; // should return true
const string6 = "hello ?test ?? foo"; // should return true
何が良いのかわかりません:正規表現または関数?何でも結構です。
私はこれを試しました:
const array = ["!", "?"];
const string = "test!";
array.every(ar => !string.includes(ar));
ただし、配列からの要素が2つではなく1つ以上あるかどうかを検出するだけです。