<div dir="ltr"><div dir="ltr"><div dir="ltr"><div>I am a fan of RegEx but not even close to an expert.</div><div><br></div><div>The following expression is supposed to provide what you need:</div><div><br></div><div><font face="monospace">^([^.]+(?:\.[^.]+)*)\.(\d{4})\.</font></div><div><br></div><div><div>Here's a breakdown of the regular expression:</div><div><br></div><div>^ asserts the position at the start of the string.</div><div>([^.]+(?:\.[^.]+)*) captures the title. It matches one or more characters that are not a dot ([^.]+), followed by zero or more groups of a dot and one or more characters that are not a dot ((?:\.[^.]+)*).</div><div>\. matches a literal dot.</div><div>(\d{4}) captures the year. It matches exactly four digits.</div><div>\. matches another literal dot.</div></div><div><br></div><div>---</div><div><br></div><div><br></div><div><div dir="ltr" class="gmail_signature"><div dir="ltr">110.  Labour to keep alive in your breast that little celestial fire called conscience.<br>--George Washington</div></div></div><br></div></div></div><br><div class="gmail_quote gmail_quote_container"><div dir="ltr" class="gmail_attr">On Tue, Dec 31, 2024 at 11:29 AM John Driezen <<a href="mailto:jdriezen@sympatico.ca">jdriezen@sympatico.ca</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Can anyone give me a regular expression to turn the following filename<br>
<br>
  "Zero.Dark.Thirty.2012.720p.BrRip.x264.BOKUTOX.YIFY.mp4"<br>
<br>
into<br>
<br>
"Zero Dark Thirty (2012)-720p.mp4"<br>
<br>
201[0-9] matches the year<br>
<br>
How do I match the title before the year, and ignore everything after <br>
the ".720p"?<br>
<br>
John Driezen<br>
<br>
<br>
<br>
_______________________________________________<br>
kwlug-disc mailing list<br>
To unsubscribe, send an email to <a href="mailto:kwlug-disc-leave@kwlug.org" target="_blank">kwlug-disc-leave@kwlug.org</a><br>
with the subject "unsubscribe", or email<br>
<a href="mailto:kwlug-disc-owner@kwlug.org" target="_blank">kwlug-disc-owner@kwlug.org</a> to contact a human being.<br>
</blockquote></div>