Last active
March 7, 2021 07:01
-
-
Save marcelotmelo/b67f58a08bee6c2468f8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
^([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]))$ |
@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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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....