Help with Extracting Domain from URL using split() in Make.com

Hi everyone,

I’m trying to extract only the domain name (e.g., example.com) from a full URL using the split() function in Make.com. I want to remove:

  • https:// or http://
  • Any path after the domain (e.g., /services, /about)
  • Any query parameters (e.g., ?utm_source=google)

Solution found : {{get(split(4.website; “/”); 2)}}

2 Likes