I have a file containing the following
and other para or any other tags.
What I want is to search for the string <ce:doi>...</ce:doi> and copy the data inside the tag e.x. the values "11.1254/a1.0000" so that I can find it on another file which has the values i.e. "11.1254/a1.0000", but inside a different tag like <doi>11.1254/a1.0000</doi>.
Normally what I do is search "<ce:doi>^(*^)</ce:doi>" then copy the finding on another page and I have to replace both "<ce:doi>" and "</ce:doi>" then copy the remaining thing to find it on the document that has <doi>...</doi> format.
Is there a short way to store the value inside the tag "<ce:doi>...</ce:doi>" to clipboard for immediate use in another file?
Code: Select all
<ce:doi>11.1254/a1.0000</ce:doi>
<ce:doi>11.1254/a1.0040</ce:doi>
<ce:doi>11.1254/a1.15x0</ce:doi>
What I want is to search for the string <ce:doi>...</ce:doi> and copy the data inside the tag e.x. the values "11.1254/a1.0000" so that I can find it on another file which has the values i.e. "11.1254/a1.0000", but inside a different tag like <doi>11.1254/a1.0000</doi>.
Normally what I do is search "<ce:doi>^(*^)</ce:doi>" then copy the finding on another page and I have to replace both "<ce:doi>" and "</ce:doi>" then copy the remaining thing to find it on the document that has <doi>...</doi> format.
Is there a short way to store the value inside the tag "<ce:doi>...</ce:doi>" to clipboard for immediate use in another file?