-
-
Save marcelotmelo/b67f58a08bee6c2468f8 to your computer and use it in GitHub Desktop.
^([0-9]+)-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])[Tt]([01][0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9]|60)(\.[0-9]+)?(([Zz])|([\+|\-]([01][0-9]|2[0-3]):[0-5][0-9]))$ |
var pattern = "The server will be offline in 2019-04-28T06:14:50.142Z for updates that will last 30 minutes until 2019-04-28T06:44:50.142Z ",
regexp = new RegExp('^([0-9]+)-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])Tt:([0-5][0-9]):([0-5][0-9]|60)(.[0-9]+)?(([Zz])|(+|-:[0-5][0-9]))$'),
test = regexp.test(pattern);
alert(test + "");
//// false;//////
It seems it is incorrect.
Could you please explain me....
@heraclesdev, first of all, pattern
is a very misleading name herer. A pettern is what you put as a string into new RegExp(...)
Better call it searchstring
.
You likely get false because "^" and "$" in the RFC3339 pattern mark beginning and end of the string. I.e. "2019-04-28T06:14:50.142Z" will match but "it is 2019-04-28T06:14:50.142Z" will not.
Hi @jy95 ! Your shortened regex is not correct. It's missing "T" or "t" between date and time representation.
This is the corresponding part of grammar that says it:
date-time = full-date "T" full-time
For guys that just want a smaller regex (just replaced your [0-9] by \d ) :
an example :