View Single Post
Old 08-21-2010, 11:14 AM   #2
Starson17
Wizard
Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.Starson17 can program the VCR without an owner's manual.
 
Posts: 4,004
Karma: 177841
Join Date: Dec 2009
Device: WinMo: IPAQ; Android: HTC HD2, Archos 7o; Java:Gravity T
Quote:
Originally Posted by Iganius View Post
I want to import books that are named only by ISBN but I don’t know what to write in Add/Save section in the filed “Regular expression”. I would like for ISBN to be recognized so that I can get metadata more easily. I tried writing “isbn” and when i hit “test” button it doesn`t work. Please help!!!
Use this:
Code:
(?P<isbn>.*)
I assume your books are named like:
9780316005388.txt

The code above will put that number string into both the title and the ISBN fields. It will put "Unknown" into author. You should then metadata fetch, making sure that you allow the default overwrite of author and title.
Starson17 is offline   Reply With Quote