.*any character (except for line terminators), repeated any number of times
\ban ASCII word boundary
Non-Capturing Group(?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) Janthe literal text Jan (case sensitive) Febthe literal text Feb (case sensitive) Marthe literal text Mar (case sensitive) Aprthe literal text Apr (case sensitive) Maythe literal text May (case sensitive) Junthe literal text Jun (case sensitive) Julthe literal text Jul (case sensitive) Augthe literal text Aug (case sensitive) Septhe literal text Sep (case sensitive) Octthe literal text Oct (case sensitive) Novthe literal text Nov (case sensitive) Decthe literal text Dec (case sensitive) \d{4}a digit, repeated exactly 4 times
\ban ASCII word boundary
.*any character (except for line terminators), repeated any number of times