Files
30-seconds-of-code/snippets/js/s/url-join.md
2023-05-07 16:07:29 +03:00

942 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Join URL segments snippet javascript
string
regexp
digital-nomad-2 2020-10-22T20:24:44+03:00

Joins all given URL segments together, then normalizes the resulting URL.

  • Use Array.prototype.join() to combine URL segments.
  • Use a series of String.prototype.replace() calls with various regular expressions to normalize the resulting URL (remove double slashes, add proper slashes for protocol, remove slashes before parameters, combine parameters with '&' and normalize first parameter delimiter).
const URLJoin = (...args) =>
  args
    .join('/')
    .replace(/[\/]+/g, '/')
    .replace(/^(.+):\//, '$1://')
    .replace(/^file:/, 'file:/')
    .replace(/\/(\?|&|#[^!])/g, '$1')
    .replace(/\?/g, '&')
    .replace('&', '?');
URLJoin('http://www.google.com', 'a', '/b/cd', '?foo=123', '?bar=foo');
// 'http://www.google.com/a/b/cd?foo=123&bar=foo'