Is English String by regex - Node.js String

Node.js examples for String:String Value

Description

Is English String by regex

Demo Code

     english : {/*w w  w .  ja va  2  s.c  o  m*/
          validator : function(value) { 
              return /^[A-Za-z]+$/i.test(value); 
          }, 
          message : '
     },

Related Tutorials