Category: Web function
This function combines a URL and a URL path into one URL.
Argument | Type | Description |
---|---|---|
url | Text | A string representing a URL. |
path | Text | A string representing the URL path to be appended to the URL. |
Return value type: Text.
combineurl("https://mysite.com/path1", "path2") // Returns "https://mysite.com/path1/path2".