by arunbahl on 9/8/23, 4:13 PM with 6 comments
by add-sub-mul-div on 9/8/23, 5:09 PM
by matteoraso on 9/8/23, 7:27 PM
by arpowers on 9/8/23, 5:16 PM
const pattern = /I hope this (\w+) finds you well\./;
if (pattern.test(text)) {
console.log("is ai.");
} else {
console.log("not ai.");
}