Regexp for adding books failing
I'm adding a couple of hundred books which all use the following naming scheme:
name of authors_Title of book.pdf
I tried this regular expression, but for some reason everything gets thrown into title and authors is Unknown:
(?P<author>[^_]+)_(?P<title>.+)
|