Jump to content

variable or conditional trim of URLs


This topic is 6118 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Hello eveyone,

I am trying to trim out the field that contains full urls into only domains.

Eg.

http://subdomain.domain.com/contact.html

http://images.yahoo.com/userx/folder/image.jpg

http://www.google.com/search?q=filemaker&rls=com.microsoft:en-us&ie=UTF-8&oe=UTF-8&startIndex=&startPage=1

into:

http://subdomain.domain.com

http://images.yahoo.com

http://www.google.com

so I found this works:

Trim ( Substitute ( MiddleValues ( Substitute ( DestinationURL; ".com"; "¶"); DestinationURL; 1); "¶"; "" ) )&".com"

------------------------- ------------

but how to implement some form of variable to cover all domain extensions?(tv,org,edu,com,...)

my poor logic would be:

-------------------------------------

DomainVAR = .net .com .tv ....(all possible)

Trim ( Substitute ( MiddleValues ( Substitute ( DestinationURL; "DomainVAR"; "¶"); DestinationURL; 1); "¶"; "" ) )&"DomainVAR"

-------------------------------------

Or does this have to be scripted?

Thanks for your time!

Link to comment
Share on other sites

This topic is 6118 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.