URL field Link name as variable

URL field Link name as variable

I have a URL field that is set to link to google maps. When the address fields (Street_Number, Street_Name, Suburb) in my form are filled out, the URL link is generated based on the address details (as in the yellow highlight part below). That aspect of my URL field is working well.

 input.Address = "<a target='_blank' href= 'https://www.google.com/maps/place/" + input.Street_Number + "+" + input.Street_Name + "+" + input.Suburb + "/'> Address</a>";

I need help with the Link Name part highlighted in red. I want it to display the inputted address ( input.Street_Number + input.Street_Name ). Any suggestions?