Quote:
Originally Posted by genright
(?P<author>.+)( - (?P<series> <series_index>))? - (?P<title>[^_]+)
|
The problem is the series field. You're using named backreferences wrong, try taking a look
at the tutorial.
You'll probably want to use something like
Code:
(?P<author>.+)( - (?P<series>[^0-9]+) (?P<series_index>\d+))? - (?P<title>[^_]+)
or something similar.