数量詞
数量詞は、一致させる文字や式の数を示します。
試してみましょう
種類
メモ: 以下の表の中で、アイテムは単一の文字だけでなく、文字クラス、Unicode プロパティエスケープ、グループと後方参照を示すこともあります。
文字 | 意味 |
---|---|
x*
|
直前のアイテム "x" の 0 回以上の繰り返しに一致します。例えば
|
x+
|
直前のアイテム "x" の 1 回以上の繰り返しに一致します。 |
x?
|
直前のアイテム "x" の 0 回か 1 回の出現に一致します。例えば
|
x{n}
|
"n" には正の整数が入ります。直前のアイテム "x" がちょうど "n" 回出現するものに一致します。例えば |
x{n,}
|
"n" には正の整数が入ります。直前のアイテム "x" の少なくとも "n"
回の出現に一致します。例えば、 |
x{n,m}
|
"n" には 0 と正の整数が、 "m" には "n"
より大きい正の整数が入ります。直前のアイテム "x" が少なくとも "n"
回、多くても "m" 回出現するものに一致します。例えば
|
|
既定では
|
例
繰り返しパターン
const wordEndingWithAs = /\w+a+\b/;
const delicateMessage = "This is Spartaaaaaaa";
console.table(delicateMessage.match(wordEndingWithAs)); // [ "Spartaaaaaaa" ]
文字数
const singleLetterWord = /\b\w\b/g;
const notSoLongWord = /\b\w{2,6}\b/g;
const loooongWord = /\b\w{13,}\b/g;
const sentence = "Why do I have to learn multiplication table?";
console.table(sentence.match(singleLetterWord)); // ["I"]
console.table(sentence.match(notSoLongWord)); // [ "Why", "do", "have", "to", "learn", "table" ]
console.table(sentence.match(loooongWord)); // ["multiplication"]
省略可能な文字
const britishText = "He asked his neighbour a favour.";
const americanText = "He asked his neighbor a favor.";
const regexpEnding = /\w+ou?r/g;
// \w+ 1 つ以上の文字
// o "o" が続く
// u? 省略可能で "u" が続く
// r "r" が続く
console.table(britishText.match(regexpEnding));
// ["neighbour", "favour"]
console.table(americanText.match(regexpEnding));
// ["neighbor", "favor"]
貪欲と非貪欲
const text = "I must be getting somewhere near the center of the earth.";
const greedyRegexp = /[\w ]+/;
// [\w ] ラテンアルファベットまたは空白
// + 1 回以上
console.log(text.match(greedyRegexp)[0]);
// "I must be getting somewhere near the center of the earth"
// テキストのすべてに一致 (ピリオドを除く)
const nonGreedyRegexp = /[\w ]+?/; // クエスチョンマークに注目
console.log(text.match(nonGreedyRegexp));
// "I"
// 一致する箇所は取りうる最も短い 1 文字