I would like to use a regular expression that works otherwise, but it does not work in Google Sheets.
Google Sheets requires re2 expressions and I don't know how to format this properly. (I've read lots of questions here on StackOverflow already but unfortunately I am stuck.)
I would like to convert the following expression:
\w++\-?+\w*+\.\w++\/
The expression is intended to do the following. Extract the domain names from a given URL. For example:
from: https://www.tag24.de/dresden/
get: tag24.de/
from: https://de.nachrichten.yahoo.com/wohnen-hamburg-bezirk-f
get: yahoo.com/
from: https://www.hitradio-rtl.de/beitrag/hier-leben
get: hitradio-rtl.de/
Any advice or help would be appreciated.