views:

37

answers:

1

Hi,

I'm trying to replace all dots found in a value entered by the user in an HTML form. For instance I need the entry '8.30' to be converted to '8x30'.

I have this simple code:

var value = $(this).val().trim(); // get the value from the form
value += ''; // force value to string
value.replace('.', 'x');

But it doesn't work. Using the console.log command in Firebug, I can see that the replace command simply does not occur. '8.30' remains the same.

I also tried the following regexp with no better result:

value.replace(/\./g, 'x');

What am I doing wrong here?

+3  A: 

replace returns a string. Try:

value = value.replace('.', 'x');   //
                                   // or
value = value.replace(/\./g, 'x'); // replaces all '.'
Bart Kiers
That was too obvious. ;)Thanks a lot. :)
s427
@s427, you're welcome! :)
Bart Kiers