A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/String/includes below:

String.prototype.includes() - JavaScript | MDN

String.prototype.includes()

Baseline Widely available

includes() メソッドは、1 つの文字列を別の文字列の中に見出すことができるかどうかを判断し、必要に応じて true か false を返します。

試してみましょう
const sentence = "The quick brown fox jumps over the lazy dog.";

const word = "fox";

console.log(
  `The word "${word}" ${
    sentence.includes(word) ? "is" : "is not"
  } in the sentence`,
);
// Expected output: "The word "fox" is in the sentence"
構文
includes(searchString)
includes(searchString, position)
引数
searchString

str の中で検索される文字の集合です。正規表現にすることはできません。正規表現ではない値はすべて文字列に変換されますので、省略したり undefined を渡したりすると、includes() は "undefined" という文字列を検索します。これはおそらく望むところではないでしょう。

position 省略可

文字列内で searchString を検索し始める位置です。(既定値は 0 です。)

返値

検索文字列が指定された文字列の中で見つかった場合、searchString が空文字列の場合は true。そうでなければ false です。

例外
TypeError

searchString が正規表現であった場合に発生します。

解説

このメソッドで、ある文字列が別な文字列の中に含まれているかどうかを判断することができます。

大文字小文字の区別

includes() メソッドは大文字と小文字が区別します。例えば、次のコードでは false を返します。

"Blue Whale".includes("blue"); // false を返す

元の文字列と検索文字列の両方をすべて小文字に変換することで、この制約を回避することができます。

"Blue Whale".toLowerCase().includes("blue"); // true を返す
例 includes() の使用
const str = "To be, or not to be, that is the question.";

console.log(str.includes("To be")); // true
console.log(str.includes("question")); // true
console.log(str.includes("nonexistent")); // false
console.log(str.includes("To be", 1)); // false
console.log(str.includes("TO BE")); // false
console.log(str.includes("")); // true
仕様書 ブラウザーの互換性 関連情報

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4