function addDots(nStr) { nStr = ('0000'+ nStr).replace(/\./g,''); return '0х ' + nStr.split('').slice(-4).join('.'); } alert(addDots('2.0.0'));