In Calibre I have a custom column 'comment'.
When I import a book like 'Lewis Carroll - Alice 01 - Wonderland # illustrated' the text after # should go to this column.
Until a year ago I used for this purpose the regex:
(?P<author>(?

?!\s-\s).)*)\s*-?\s*[0-9]*\s*(?P<series>(?

?![0-9]?[0-9-]\.?[0-9]*\s-\s).)*)?\s?(?P<series_index>[0-9]+.?[0-9]*)?\s?-?[0-9]*\s*-\s(?P<title>[^#]+)\s?(?P<comment>[#\s].*)?
But this doesn't work anymore: the text 'illustrated' is not added to the comment column but to the comments section in the Metadata screen.
How can I resolve this?