/(?<![&])(?:\B)#(\w+)/iu/(?<![&])#(\w+)/iu захватит "текст#тег" https://regex101.com/r/1PUO2t/1 (флаг g поставил для наглядности) system("chcp 65001") )var link = 'https://api.openweathermap.org/data/2.5/weather?q='+nameCity.value+'&appid=0d54e2c99f5135987d576129179b6bf11';var input = document.querySelector("input");
var btn = document.querySelector(".btn");
var link = "";
btn.addEventListener("click", function(){
link = 'https://api.openweathermap.org/data/2.5/weather?q='+input.value+'&appid=0d54e2c99f5135987d576129179b6bf11';
});
console.log(link);