Im having a hard time getting the regular expressions right for
Adding Books> Configure metadate from file name
Im basically trying to get this to work
Code:
(?P<author>[^_]+) - (?P<title>.+) [(?P<published>)]
Sample for an input file would be:
AuthorsName - TitleBook [yearNumber].epub
another:
Bill Gates - Using Windows 10 [2015].epub
yearnumber being a 4 digit field.
** please take note that the year is between two square brackets.