View Single Post
Old 10-04-2010, 11:40 AM   #31
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 Manichean View Post
So you're importing with lastname, firstname(s) in the authors field and want firstname(s) lastname? That's easy: Do a search in the authors field for
Code:
([^,]*),\s(.*?)
and replace with
Code:
\2 \1
You don't want the non-greedy version in the last group of the search.

use the greedy version:
Code:
([^,]*),\s(.*)
and
Code:
\2 \1
Starson17 is offline   Reply With Quote