[Solved] how to add substring into a string


You could use a regular expression:

const addPort = (url, port) => 
    url.replace(/^(https?:\/\/)?([^/]*)(\/.*)?$/, '$1' + '$2:' + port + '$3');

console.log(addPort('http://www.example.com/full/url/with/param', '8080'))

0

solved how to add substring into a string