Need help to delete the first author in different books
I want to delete the first author in different books. The author is different in name, so I need to select every 1 value in the author list. But if I try search regex it always use the phrase on every value on the multivalue author colum.
Author a b ::: c d
search (\w+)\s(\w+)
replace \2
result b ::: d
wished c d
Can someone help me?
|