\"http://something.com:6688/remote/17/26/172\"
if I have the value 172 and I need to change the url to 175
\"http://something.com:6688/
Split the String by /, remove the last part, rejoin by /, and add the new path
newurl = url.split('/').slice(0,-1).join('/')+'/175'