Check Employe ID

rockyy

Active member
Joined
Feb 3, 2010
Messages
25
Programming Experience
Beginner
I Want my Employee ID
Should start with E and then it can have any no of digits

right now i m using this query
i dont think its right please help me to correct it
using regular expressionor custom expression
VB.NET:
(e+^[^-][0-9]$)

it should have E1,E11,E11111 and so on only thing it should start with( E or e)
 
VB.NET:
^[eE]\d+$
or with RegexOptions.IgnoreCase:
VB.NET:
^E\d+$
 
Back
Top