A valid value for the URL data type can be composed of the following parts.
Example URL:
http://www.app.example.co.uk/support
NOTE: IP addresses that include the protocol identifier (http://1.2.3.4
) do not contain domain identifiers and need to be processed using a different set of methods. It might be easier to remove the protocol identifiers and change the data type to IP Address.
The hierarchy of domain names extends from right to left.
Element Name | Examples | Wrangle Function | Notes |
---|---|---|---|
Top-level domain |
| SUFFIX Function | Every valid URL must have at least one top-level domain. NOTE: When the |
Second-level domain | example app.example | DOMAIN Function | This value can be extracted from a valid URL using the DOMAIN function. See DOMAIN Function. |
Third-level domain | www | SUBDOMAIN Function | This value can be extracted from a valid URL using the SUBDOMAIN function. See SUBDOMAIN Function. |
path | /support | ||
protocol identifier | http:// https:// | You can use pattern matching to locate these protocol identifiers. In your Wrangle transforms, use the following Alteryx® pattern: `http%?://` For an example, see IPTOINT Function. | |
hostname | http://www.app.example.com |
This page has no comments.