Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given the code line

var value = $("#text").val();

and value = 9.61, I need to convert 9.61 to 9:61. How can I use the jQuery replace function here?

share|improve this question
19  
Note that this has nothing to do with jQuery, but just with plain old javascript. – Ikke Jan 27 '10 at 10:22
I have a similar problem. I have a 'var' variable in javascript and I want to replace the string/characters in it. I tried this code: var myObject="my%dynamic%value\n"; myObject=myObject.replace("%","").replace("\n",""); Also tried myObject=myObject.replace('%','').replace('\n',''); It gives me the error that replace is not a known function – bill berlington Nov 3 '11 at 10:33
The exact error message for the above issue is "Microsoft JScript runtime error: Object doesn't support property or method 'replace'" – bill berlington Nov 3 '11 at 10:38

8 Answers

up vote 240 down vote accepted

Do it like this:

var value = $("#text").val(); // value = 9.61 use $("#text").text() if you are not on select box...
value = value.replace(".", ":"); // value = 9:61
// can then use it as
$("#anothertext").val(value);

Updated to reflect to current version of jQuery. And also there are a lot of answers here that would best fit to any same situation as this. You, as a developer, needs to know which is which..

share|improve this answer
2  
I tried that but an error occure as value.replace is not a function :( – Nisanth Jan 27 '10 at 10:22
thephpdeveloper added something to make it correct... that should do it... see above edited – Reigel Jan 27 '10 at 10:25
@thephpdeveloper thanks... – Reigel Jan 27 '10 at 10:25
3  
This won't work if we try to replace more than one value at a time. :( – vissu May 28 '12 at 13:06
13  
To replace multiple characters at a time use some thing like this: name.replace(/&/g, "-"). Here I am replacing all '&' chars with '-'. "g" means "global". – vissu May 28 '12 at 13:38
show 4 more comments

Probably the most elegant way of doing this is to do it in one step. See val().

$("#text").val(function(i, val) {
  return val.replace('.', ':');
});

compared to:

var val = $("#text").val();
$("#text").val(val.replace('.', ':'));

From the docs:

.val( function(index, value) )

function(index, value)A function returning the value to set.

This method is typically used to set the values of form fields. For <select multiple="multiple"> elements, multiple s can be selected by passing in an array.

The .val() method allows us to set the value by passing in a function. As of jQuery 1.4, the function is passed two arguments, the current element's index and its current value:

$('input:text.items').val(function(index, value) {
  return value + ' ' + this.className;
});

This example appends the string " items" to the text inputs' values.

This requires jQuery 1.4+.

share|improve this answer
but as i see it the guy just want to change the var value and not the value in the text box as you suggested... – Reigel Jan 27 '10 at 10:37

I love jQuery's method chaining. Simply do...

    var value = $("#text").val().replace('.',':');

    //Or if you want to return the value:
    return $("#text").val().replace('.',':');
share|improve this answer
1  
this has nothing to do with jquery chaining actually. After you've called .val() it's a regular string. – zerkms Apr 16 at 9:02

A simple one liner:

$("#text").val( $("#text").val().replace(".", ":") );
share|improve this answer
1  
this will only work if the value is a string... and also, calling $("#text") twice in there is not a good practice... – Reigel Dec 14 '12 at 0:51
the OP also didn't specify that he wanted to replace the value of the $("#text") :) – Reigel Dec 14 '12 at 0:54
Comment 1...Wrong. Comment 2...think about the logic of his question, no need to specify. – VIDesignz Dec 14 '12 at 6:05
prove it.. and do remember, dated Jan 27 '10 at 10:16 – Reigel Dec 14 '12 at 6:12
you don't even know good practice.. you might want to read this.. stackoverflow.com/questions/3230727/… – Reigel Dec 14 '12 at 6:14
show 9 more comments

It can be done with the regular JavaScript function replace().

value.replace(".", ":");
share|improve this answer
1  
value here is not a string... – Reigel Jan 27 '10 at 10:27
Reigl is right: this won't work – Juan Lanus Dec 2 '12 at 20:00
Im not sure if I missed something but since the value comes from the textbox it is a string no? Example jsfiddle.net/xMBuA – Anders Eriksson Dec 5 '12 at 13:31
$("#text").val(function(i,v) { 
   return v.replace(".", ":"); 
});
share|improve this answer
(9.61 + "").replace('.',':')

Or if your 9.61 is already a string:

"9.61".replace('.',':')
share|improve this answer

Try this function to replace a string from JavaScript document.

//str_replace(search,replace,subject)

var str="book";
var output = str_replace("b","k",str);
alert(output);
share|improve this answer
Answer should be related to jquery – Fero Nov 22 '11 at 9:09
are you sure this is from the javascript documentation ?!!, there are no function called str_replace in js – Ahmad Sep 19 '12 at 7:03

protected by Reigel Feb 26 at 8:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.