1
(Mr | Ms. | Dr. | Er。)で始まる文字列に続けて文字列[a- zA-Z]でも何とか "Er.Dr."のために渡しています。イニシャルから始まる文字列とそれに続く有効なアルファベット文字列を一致させる - Regex
ここで正規表現に間違っていることを教えてください。
var input = [
{str: "Mr.X", expectedValue: true},
{str: "Mrs.Y", expectedValue: true},
{str: "Dr#Joseph", expectedValue: false},
{str: "Er .Abc", expectedValue: false},
{str: "Er.Dr.", expectedValue: false},
{str: "Er.Abc", expectedValue: true}
];
var re = /^(Mr|Mrs|Ms|Dr|Er)\.+[A-Za-z]/;
input.forEach(x => {
var answer;
var matchStr;
answer = re.test(x.str);
matchStr = x.expectedValue === answer ? "MATCH" : "NO MATCH";
console.log("------------------------------------------------------------------------------");
console.log(`"${x.str}" | Expected Output: ${x.expectedValue} | My Output: ${answer} | ${matchStr}`);
console.log("------------------------------------------------------------------------------");
})
出力 -