You can replace all commas with this little script by the aid of regular expressions
<script>
var s = '133,123,123.00';
var replacedText = s.replace(/,/g,'_');
document.write(replacedText);
</script>
Bu yazıyı ilk değerlendiren siz olun
- Currently 0/5 Stars.
- 1
- 2
- 3
- 4
- 5