Use the .replace() method. To replace any instances of "nameInstallation" in your url variable with "1002":
url = url.replace(/nameInstallation/g, "1002");
Or if you have the replacement value in a variable nameInstallation = 1002:
url = url.replace(/nameInstallation/g, nameInstallation);
EDIT: As pointed out by David Thomas, you probably don't need the g flag on the regular expression that is the first parameter to .replace(). With this "global" flag it will replace all instances of the text "nameInstallation". Without the flag it would replace only the first instance. So either include it or leave it off according to your needs. (If you only need to replace the first occurrence you also have the option of passing a string as the first parameter rather than a regex.)