Resolves a URL.
Example

Example Input
dim_A | dim_B | metric_1 | url_1 |
AAA | DDD | 111 |
https://www.adverity.com/ |
BBB | EEE | 222 | |
CCC | FFF | 333 |
https://goo.gl/cr88B2 |
Example Output
dim_A | dim_B | metric_1 | url_1 | resolved_url |
AAA | DDD | 111 |
https://www.adverity.com/ |
https://www.adverity.com/ |
BBB | EEE | 222 | ||
CCC | FFF | 333 |
https://goo.gl/cr88B2 |
https://www.adverity.com/ |
I Ain't Afraid of No Code!
[
[
"resolveurl",
{
"strict": false,
"subtable": null,
"fieldname": "resolved_url",
"srcfield": "url_1",
"_comment": null
}
]
]
param boolean strict: Default is false.
param str subtable: Name a subtable in which output will be stored (will create subtable where necessary).
param str fieldname: Field name to created that will hold resolved URL.
param str srcfield: Field containing URL to be resolved.
param str comment: A comment that will appear in the Transformation UI.
Comments
0 comments
Article is closed for comments.