View Single Post
Old 06-05-2016, 11:34 PM   #4
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,421
Karma: 85400180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
Should be a simple matter of modifying the
Code:
(?P<series_index>[0-9]*)
section to say that the character set should include a period in addition to numbers.

So:
Code:
(?P<series_index>[.0-9]*)
...

AFAIK the period shouldn't do anything wonky re: filenames, unless of course the file has no extension -- which would mean the period there was declaring everything else to be the file extension.
Fortunately, that is rather unlikely.

Last edited by eschwartz; 06-05-2016 at 11:37 PM.
eschwartz is offline   Reply With Quote