Quote:
Originally Posted by makaza
Is there a way using regular expressions to remove second and subsequent authors from the AUTHORS column?
I have a large number of books which have more then one author and I wish to have the author column display only the first author.
The second(and subsequent) authors appear immediately after the first appearance of the ";" character - so I assume there must be a away to delete the " ;" character and everything after it?
Can anyone help - I've tried various expressions but havent achieved the desired result.
Many Thanks
Anzhelika
|
Each additional Author should follow the & sign
I think this might work:
Code:
(.+)\:.+
replace: \1