Skip to content

Commit

Permalink
Fix simple typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cathiecode authored Jun 16, 2023
1 parent 43dc140 commit 8914d2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/ja/web/javascript/guide/regular_expressions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ _なぜこれが JavaScript に組み込まれていないのでしょうか?_
| {{jsxref("String/matchAll", "matchAll()")}} | キャプチャグループを含む、すべての一致するものを含むイテレーターを返します。 |
| {{jsxref("String/search", "search()")}} | 文字列内で一致するものがあるか検査します。一致した位置を返します。検索に失敗した場合は `-1` を返します。 |
| {{jsxref("String/replace", "replace()")}} | 文字列内で一致するものを一つ検索し、一致した部分文字列を置換する部分文字列で置換します。 |
| {{jsxref("String/replaceAll", "replaceAll()")}} | 文字列内で一致するものすべてを一つ検索し、一致した部分文字列を置換する部分文字列で置換します。 |
| {{jsxref("String/replaceAll", "replaceAll()")}} | 文字列内で一致するものすべてを検索し、一致した部分文字列を置換する部分文字列で置換します。 |
| {{jsxref("String/split", "split()")}} | 正規表現または固定文字列を用いて文字列を分割し、部分文字列の配列に入れます。 |
あるパターンが文字列に存在するかを知りたいときは、`test()` または `search()` メソッドを使用してください。詳細な情報が知りたいときは (実行時間が長くなりますが) `exec()` または `match()` メソッドを使用してください。
Expand Down

0 comments on commit 8914d2a

Please sign in to comment.