If you get a .bib file from google books, unsurprisingly it has a link to google books in the URL field. This is handy to have in the .bib file so I'd rather not remove it from the file, which would be easy using regex, however I don't want it to print.
Is there a way to suppress printing of the URL field based on the content of that field?
Alternatively it looks like I could disable the URL field for @books with something like \AtEveryBibitem{\ifentrytype{book}{\clearfield{url}}{}} but I'd rather fix the real issue and keep the ability to cite books with URLs .
%by the look of things. So I can use a regex to comment out the field with find:(url\ ?=\ ?\{[a-z:/]*books\.google\.)replace:%$1. – Chris H Mar 20 '14 at 14:41