Node.js examples for Regular expression:Validation
Is int or float number
intOrFloat : {// ww w . j a v a 2 s . co m validator : function(value) { return /^\d+(\.\d+)?$/i.test(value); }, message : '' },