diganta


{ City } noida
< Country > india
* Profession *
User No # 74977
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Questions / { diganta }
Questions Answers Category Views Company eMail




Answers / { diganta }

Question { 3003 }

Using Regular expression in Date format DD/MM/YYYY
(0[1-9]|[12][0-9]|3[01])/(0[1-9]|1[12])/([0-9]{4})
in this regular expression year 0000 also accepted.I need
atleast any one single digit must be nonzero value (like
0009,1000,0034)


Answer

You can use following Regular Expression
(0[1-9]|[12][0-9]|3[01])/(0[1-9]|1[12])/((?!0000)[0-9]{4})

Is This Answer Correct ?    0 Yes 0 No