How to have an “OR” condition in the HTML Extract Node?
Node
This node works fine! It returns on the HTML any URL containing ncbi. but I’d like to also add other options for that same CSS selector, so I can have everything in 1 array, but I also don’t want to take URLs that are not relevant to me on that page.
How can I perform this:
CSS SELECTOR = a[href*=“ncbi.”] OR a[href*=“anotherurltype1”] OR a[href*=“anotherurltype2”]
So that it returns directly the list of various URLs I’d like that contains
- ncbi.
- anotherurltype1
- anotherurltype2
Thanks for the help!
Vince