const regex = new RegExp('^(?=.*(\\b\\d{3,4}p\\b)([_. ]WEB[_. ])(?!DL)\\b)|\\b(-CAKES|-GGEZ|-GGWP|-GLHF|-GOSSIP|-NAISU|-KOGI|-PECULATE|-SLOT|-EDITH|-ETHEL|-ELEANOR|-B2B|-SPAMnEGGS|-FTP|-DiRT|-SYNCOPY|-BAE|-SuccessfulCrab|-NHTFS|-SURCODE|-B0MBARDIERS)', 'gmi')
const str = `# MATCH
Series S43E03 1080p WEB-DL DDP 5.1 H.264-CAKES
Series S43E03 1080p WEB-DL DDP 5.1 H.264-GGEZ
Series S43E03 1080p WEB-DL DDP 5.1 H.264-GGWP
Series S43E03 1080p WEB-DL DDP 5.1 H.264-GLHF
Series S43E03 1080p WEB-DL DDP 5.1 H.264-GOSSIP
Series S43E03 1080p WEB-DL DDP 5.1 H.264-KOGi
Series S43E03 1080p WEB-DL DDP 5.1 H.264-PECULATE
Series S43E03 1080p WEB-DL DDP 5.1 H.264-SLOT
Series S43E03 1080p WEB DDP 5.1 H.264--RlsGrp
Movie.2022.MULTI.HDR.2160p.WEB.H265-LOST
Movie.2022.iNTERNAL.HDR.2160p.WEB.H265-NAISU
Movie.2022.DV.2160p.WEB.H265-NAISU
Movie.2022.OAR.1080p.WEB.H264-SLOT
Movie.2022.1080p.WEB.H264-NAISU
Movie.2022.720p.WEB.H264-SLOT
# DON'T MATCH
Movie.2022.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-RlsGrp
Show.S01.1080p.AMZN.WEB.DL.DD5.1.H.264-RlsGrp
Title.Web.2006.1080p.WEB.DL.DD5.1.H.264-RlsGrp
Show.Title.S05E07.Episode.Title.Web.2006.1080p.WEB.DL.DD5.1.H.264-RlsGrp
`;
// Reset `lastIndex` if this regex is defined globally
// regex.lastIndex = 0;
let m;
while ((m = regex.exec(str)) !== null) {
// This is necessary to avoid infinite loops with zero-width matches
if (m.index === regex.lastIndex) {
regex.lastIndex++;
}
// The result can be accessed through the `m`-variable.
m.forEach((match, groupIndex) => {
console.log(`Found match, group ${groupIndex}: ${match}`);
});
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for JavaScript, please visit: https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions