In QML2 I didn\'t find any Calender control and I have implemented a control which takes date and time as input and I am using the regular expression for the va
Calender
Your sequence to match the year is:
([19\s[2-9\s][0-9\s])\d\d
Which looks malformed, as the brackets do not match.
Also, the presence of the two digits (using \d) means that the expression will not match white space.
\d