I have number like 4.1.1.1
replace with 4_1_1_1
Please provide solution in jQuery.
I have number like 4.1.1.1
replace with 4_1_1_1
Please provide solution in jQuery.
var convertDotToDash = function(string) {
return string.replace(/\./g,'_');
}
This is what @Solution mentioned. Just made it into a function