Theatrical Edition
Edition
Pattern
Pattern
(?<=\b[12]\d{3}\b).*\b(Theatrical)(\b|\d)Description
Matches any type of theatrical edition.
- Ensures that
Theatricalcomes after the year so that movies with 'Theatrical` in the title are not matched
References
| Tags | |
|---|---|
| Better Theatricals | Edition |
| Extended Edition | Edition |
| Special Edition | Edition |
| Theatrical | Edition |
History
- Pattern changed
Before
^(.*?)(\d{4})(.*?)\b(theatrical)\bAfter
(?<=\b[12]\d{3}\b).*\b(Theatrical)(\b|\d)
Also changed in this commit