So it looks like this should be a feature, and has worked in the past. You used to be able to capture a variable from the RSS Downloaders regex and use it in the directory (example copied from previous thread):
Quote
Now I'm using 3.6 and the replace function pulling regex captures into variable {$1} {$2} etc. isn't working. Is there a syntax change I'm missing or has this feature been removed?
Quote
In svn version you can format directory and label from a filter parameters.
Example:
Filter: |Castle.*S(\d\d)E(\d\d)|i
Directory: /path/Castle/Season{$1}/Episode{$2}
Lablel: Castle_E{$2}S{$1}
RSS item with name Castle.S03E01 will produce directory /path/Castle/Season03/Episode01 and label Castle_E01S03. And you may see result without downloading, if you press to the button with label '?'.
Example:
Filter: |Castle.*S(\d\d)E(\d\d)|i
Directory: /path/Castle/Season{$1}/Episode{$2}
Lablel: Castle_E{$2}S{$1}
RSS item with name Castle.S03E01 will produce directory /path/Castle/Season03/Episode01 and label Castle_E01S03. And you may see result without downloading, if you press to the button with label '?'.
Now I'm using 3.6 and the replace function pulling regex captures into variable {$1} {$2} etc. isn't working. Is there a syntax change I'm missing or has this feature been removed?