Quote:
Originally Posted by clonetom
Now if someone could help me with an expression so that I can import...
a. everything before <space> ISBN into the <title> (only need this for quick referencing - will be overwritten if metadata is found)
b. and the ISBN number into <isbn>... (as basis for the metadata search
|
This seems to do the trick.
Code:
(?P<title>.+) ? (?P<isbn>[^_]+)
Good Luck.