1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* more general "Part n" pattern

This commit is contained in:
Reinhard Pointner 2009-07-09 20:02:44 +00:00
parent 7768d2e905
commit d1f12dd628

View File

@ -43,7 +43,7 @@ String.prototype.replaceTrailingBraces = function(replacement) {
// use empty string as default replacement
var r = replacement ? replacement : "";
return this.replace(/\s*\(([^\)]*)\)$/, r);
return this.replace(/\s*[(]([^)]*)[)]$/, r);
}
@ -57,9 +57,8 @@ String.prototype.replacePart = function (replacement) {
// use empty string as default replacement
var r = replacement ? replacement : "";
// handle '(n)' and ': Part n' syntax
var pattern = [/\s*\((\w+)\)$/i, /\s*\W? Part (\w+)$/i];
// handle '(n)', '(Part n)' and ': Part n' like syntax
var pattern = [/\s*[(](\w+)[)]$/i, /\W*Part (\w+)\W*$/i];
for (var i = 0; i < pattern.length; i++) {
if (pattern[i].test(this)) {
return this.replace(pattern[i], r);