Excerpt |
---|
Finds the value a subdomain value from a valid URL. Input values must be of URL or String type. |
In this implementation, a subdomain value is the first group of characters in the URL after any protocol identifiers ( http://
or https://
, for example). URL literal example:
D code |
---|
derive type:single value: SUBDOMAIN('http://www.example.com' ) as: 'myDomain' |
Output: Generates a column containing the value www
.
D code |
---|
derive type:single value: SUBDOMAIN('http://www.exampl.e.com') as: 'myDomain' |
Output: Generates a column containing the value www.exampl
.
Column reference example:
D code |
---|
derive type:single value: SUBDOMAIN(myURLs) as: 'myDomain' |
Output: Generates the new myDomain column containing the subdomain values extracted from the myURLs
column.
D code |
---|
derive type:single value: SUBDOMAIN(column_url) |
Argument | Required? | Data Type | Description |
---|
column_url | Y | string | Name of column or String or URL literal containing the sub-domain value to extract |
column_url
Name of the column or URL or String literal whose values are used to extract the subdomain value.
- Missing input values generate missing results.
- Multiple columns and wildcards are not supported.
Required? | Data Type | Example Value |
---|
Yes | String literal or column reference (URL) | http://www.example.com |
Example - Domain, Subdomain, Host, and Suffix functions
Include Page |
---|
| EXAMPLE - Domain Functions |
---|
| EXAMPLE - Domain Functions |
---|
|