Quote:
Originally Posted by Manichean
That's because the named groups are empty. You'll need to actually fit an expression in there describing what you want to match. Try
Code:
(?P<series_index>\d+) - (?P<series>.*?) - (?P<title>.*?)
or something similar.
|
Thank you very much. This worked great!