Hello everybody, I have a rookie question.
I would like to create a column using only a part of data from another column, how can I do it?
To be more specific: I have a column with a complete bibliographic description of books, and I want to extract from this description only the information related to the publisher.
Fortunately, the bibliographic description follows the International Standard Book Description rules, where the information on publishers are always expressed in the same way:
*Title / Author (authors). - City : Publisher ; (eventually) 2nd Publisher, Date of publication. - etc.
So I thought you’d go this way:
if(value.contains (/“: " (.*)”,“/),”",value)
But the result is the exact copy of the original column cell content.
How can I copy in the new column only the information that correspond to the RegEx?
Or maybe I am barking up the wrong tree?
Thanks in advance to anyone who could help me
Bye
Mauro