views:

35

answers:

3

What's the problem with this?

the hash is : #/search=hello/somethingelse/

window.location.hash.replace(/search=([^\/]*)/gi, "search=" + value);

EDIT:

I want to change just a specific part of the hash not the whole hash.

+4  A: 

hash.replace() does not actually change the hash, only return a value (as it is a String function). Try assigning that result, using:

window.location.hash = window.location.hash.replace(/search=([^\/]*)/gi, "search=" + value);

On the other hand, window.location.replace() is actually a function that changes the URL, but that does not work directly with regexes.

idealmachine
+1  A: 

Did you forget to assign it?

replace() is a String function and returns a new String object, it doesn't modify the original String.

window.location.hash = window.location.hash.replace(/search=([^\/]*)/gi, "search=" + value);
Jacob Relkin
A: 

JavaScript strings are immutable, I believe. (a quick Google search shows that both SO and Wikipedia back me up)

This effectively means their value can't be changed without an assignment statement.

Hence, String.replace(...) doesn't change the String's value, but instead returns a new String.

var replaced = window.location.hash.replace(/search=([^\/]*)/gi, "search=" + value);

Now, since you are presumably trying to change the window.location.hash you're probably fishing for...

window.location.hash = window.location.hash.replace(/search=([^\/]*)/gi, "search=" + value);
LeguRi
Your second statement is incorrect, their values cannot ever be changed, that's the definition of immutable.
Jacob Relkin
Jacob, you know what he meant. :-)
Sergei Tulentsev
@Jacob Ralkin - This is true, but I was sacrificing accuracy for clarity; from a practical standpoint, for a beginner, I feel the statement is still accurate, though not correct.
LeguRi