Thanks.
When trying to get the new ISBN back into the identifiers field, I tried this:
Code:
program:
isbn = columnupdate_identifier_isbnconvert();
newisbn = strcat('isbn:', isbn);
list_union($identifiers, newisbn, ',')
Template tester shows it producing a result of
isbn:9780690042399, goodreads:2152001, isbn:0690042396
However, actually running it fails, I think because the identifiers field won't accept the isbn value when one already exists. What would be the best option for either
a) instead of list_union, replacing the ISBN;
b) removing the existing ISBN before doing the list_union?
I thought list_re should work, but I'm having trouble with the syntax.