Value
stringlengths 2
60
| Pattern
stringlengths 3
56
| Reason
stringlengths 78
167
|
---|---|---|
gqe7*Jx!54bGbeVh0sptud
|
[\w\*!]+
|
Value has word chars \w+ and punctuation marks '*', '!', wich are kept and escaped.
|
2008-02-28T10%2B45%2B55.341
|
\d{4}\-\d{2}\-\d{2}T\d{2}%2B\d{2}%2B\d{2}\.\d{3}
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by '%2B'. precision is 'milliseconds.
|
2027%2007%2030T04%2558%2517.869
|
\d{4}%20\d{2}%20\d{2}T\d{2}%25\d{2}%25\d{2}\.\d{3}
|
Value is an iso-date. year-month-day are separated by '%20'. 'T' splits date from time. hour:min:sec are separated by '%25'. precision is 'milliseconds.
|
Jn3uR6NShf;0
|
[\w;]+
|
Value has word chars \w+ and punctuation marks ';', wich are kept and escaped.
|
2019-01-16T11:11:55.322Z
|
\d{4}\-\d{2}\-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds. ends with 'Z'.
|
Ed51;bXOm9oh@d8yI,ferFxVNy1F
|
[\w;@,]+
|
Value has word chars \w+ and punctuation marks ';', '@', ',', wich are kept and escaped.
|
NQpviBto5lj>QH7QlZkfLUqLjZaT+Wj9fxKqnIZ5O<SFz1FP2KVu
|
[\w>\+<]+
|
Value has word chars \w+ and punctuation marks '>', '+', '<', wich are kept and escaped.
|
620
|
\d+
|
Value is a number. \d+ accounts for similar numeric data of different lengths.
|
CMKchsEg8
|
\w+
|
Value is a word. \w+ accounts for similar alphanumeric data of different lengths.
|
XaQLEYpT
|
\w+
|
Value is a word. \w+ accounts for similar alphanumeric data of different lengths.
|
2004$2401$2411 07:38:23.102
|
\d{4}\$24\d{2}\$24\d{2}\ \d{2}:\d{2}:\d{2}\.\d{3}
|
Value is an iso-date. year-month-day are separated by '$24'. ' ' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds.
|
wJFp:EalHelxdRFBJT
|
[\w:]+
|
Value has word chars \w+ and punctuation marks ':', wich are kept and escaped.
|
2023-11-25T20:47:56.553
|
\d{4}\-\d{2}\-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds.
|
dmClqCc
|
\w+
|
Value is a word. \w+ accounts for similar alphanumeric data of different lengths.
|
ivBSdab[xf7M?8KtihTkPCm2p.V8Ph2Odg6aby9
|
[\w\[\?\.]+
|
Value has word chars \w+ and punctuation marks '[', '?', '.', wich are kept and escaped.
|
1995$2310$2315+11:45:43.263Z
|
\d{4}\$23\d{2}\$23\d{2}\+\d{2}:\d{2}:\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '$23'. '+' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds. ends with 'Z'.
|
2024-12-16 18%3A23%3A53.281Z
|
\d{4}\-\d{2}\-\d{2}\ \d{2}%3A\d{2}%3A\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. ' ' splits date from time. hour:min:sec are separated by '%3A'. precision is 'milliseconds. ends with 'Z'.
|
2017-05-03 15%2D56%2D59.444Z
|
\d{4}\-\d{2}\-\d{2}\ \d{2}%2D\d{2}%2D\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. ' ' splits date from time. hour:min:sec are separated by '%2D'. precision is 'milliseconds. ends with 'Z'.
|
PrhcGu2g4`_7sd3_6pUTUVVG@w4UJQ
|
[\w`@]+
|
Value has word chars \w+ and punctuation marks '`', '@', wich are kept and escaped.
|
0hOuSCop9hv^8wPT0owDHFOHqKLs=p1H3YoYZ7Vaq&dHMHivBoa
|
[\w\^=\&]+
|
Value has word chars \w+ and punctuation marks '^', '=', '&', wich are kept and escaped.
|
mjw7I5lZr|LGVmyeUauV
|
[\w\|]+
|
Value has word chars \w+ and punctuation marks '|', wich are kept and escaped.
|
2027$2606$2622T20:58:41Z
|
\d{4}\$26\d{2}\$26\d{2}T\d{2}:\d{2}:\d{2}Z
|
Value is an iso-date. year-month-day are separated by '$26'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'seconds. ends with 'Z'.
|
eCQ7TgWm7
|
\w+
|
Value is a word. \w+ accounts for similar alphanumeric data of different lengths.
|
2027-09-24 21$5F12$5F50Z
|
\d{4}\-\d{2}\-\d{2}\ \d{2}\$5F\d{2}\$5F\d{2}Z
|
Value is an iso-date. year-month-day are separated by '-'. ' ' splits date from time. hour:min:sec are separated by '$5F'. precision is 'seconds. ends with 'Z'.
|
2023-01-09+19:05:17Z
|
\d{4}\-\d{2}\-\d{2}\+\d{2}:\d{2}:\d{2}Z
|
Value is an iso-date. year-month-day are separated by '-'. '+' splits date from time. hour:min:sec are separated by ':'. precision is 'seconds. ends with 'Z'.
|
1998-04-17T16:42:50.723Z
|
\d{4}\-\d{2}\-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds. ends with 'Z'.
|
114123424532128
|
\d+
|
Value is a number. \d+ accounts for similar numeric data of different lengths.
|
603
|
\d+
|
Value is a number. \d+ accounts for similar numeric data of different lengths.
|
2020-06-13 04%3B05%3B49
|
\d{4}\-\d{2}\-\d{2}\ \d{2}%3B\d{2}%3B\d{2}
|
Value is an iso-date. year-month-day are separated by '-'. ' ' splits date from time. hour:min:sec are separated by '%3B'. precision is 'seconds.
|
2018%3A10%3A05T23$3F51$3F35.168
|
\d{4}%3A\d{2}%3A\d{2}T\d{2}\$3F\d{2}\$3F\d{2}\.\d{3}
|
Value is an iso-date. year-month-day are separated by '%3A'. 'T' splits date from time. hour:min:sec are separated by '$3F'. precision is 'milliseconds.
|
1993-02-14 05:21:53Z
|
\d{4}\-\d{2}\-\d{2}\ \d{2}:\d{2}:\d{2}Z
|
Value is an iso-date. year-month-day are separated by '-'. ' ' splits date from time. hour:min:sec are separated by ':'. precision is 'seconds. ends with 'Z'.
|
bFDN@84ZtnHWFvM-WNcwfbgeYW
|
[\w@\-]+
|
Value has word chars \w+ and punctuation marks '@', '-', wich are kept and escaped.
|
8FRi6xIeH_G7PBy
|
[\w_]+
|
Value has word chars \w+ and punctuation marks '_', wich are kept and escaped.
|
702097916933
|
\d+
|
Value is a number. \d+ accounts for similar numeric data of different lengths.
|
1992-10-02T09%3B26%3B53.172Z
|
\d{4}\-\d{2}\-\d{2}T\d{2}%3B\d{2}%3B\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by '%3B'. precision is 'milliseconds. ends with 'Z'.
|
2007%3E04%3E06+09$3D07$3D27Z
|
\d{4}%3E\d{2}%3E\d{2}\+\d{2}\$3D\d{2}\$3D\d{2}Z
|
Value is an iso-date. year-month-day are separated by '%3E'. '+' splits date from time. hour:min:sec are separated by '$3D'. precision is 'seconds. ends with 'Z'.
|
I6PDg@oizLE'yGS0i6kWRIoX\yUVYs
|
[\w@'\\]+
|
Value has word chars \w+ and punctuation marks '@', ''', '\', wich are kept and escaped.
|
2024-08-26+03$2557$2511.999Z
|
\d{4}\-\d{2}\-\d{2}\+\d{2}\$25\d{2}\$25\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. '+' splits date from time. hour:min:sec are separated by '$25'. precision is 'milliseconds. ends with 'Z'.
|
2025-12-15T16:36:58Z
|
\d{4}\-\d{2}\-\d{2}T\d{2}:\d{2}:\d{2}Z
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'seconds. ends with 'Z'.
|
1998$3C10$3C03T22:08:48.790Z
|
\d{4}\$3C\d{2}\$3C\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '$3C'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds. ends with 'Z'.
|
2010-07-11+20:58:04Z
|
\d{4}\-\d{2}\-\d{2}\+\d{2}:\d{2}:\d{2}Z
|
Value is an iso-date. year-month-day are separated by '-'. '+' splits date from time. hour:min:sec are separated by ':'. precision is 'seconds. ends with 'Z'.
|
2018$3C01$3C11 04:56:53Z
|
\d{4}\$3C\d{2}\$3C\d{2}\ \d{2}:\d{2}:\d{2}Z
|
Value is an iso-date. year-month-day are separated by '$3C'. ' ' splits date from time. hour:min:sec are separated by ':'. precision is 'seconds. ends with 'Z'.
|
2012$5B06$5B12 16:39:55Z
|
\d{4}\$5B\d{2}\$5B\d{2}\ \d{2}:\d{2}:\d{2}Z
|
Value is an iso-date. year-month-day are separated by '$5B'. ' ' splits date from time. hour:min:sec are separated by ':'. precision is 'seconds. ends with 'Z'.
|
2002-11-18+10%7C40%7C43Z
|
\d{4}\-\d{2}\-\d{2}\+\d{2}%7C\d{2}%7C\d{2}Z
|
Value is an iso-date. year-month-day are separated by '-'. '+' splits date from time. hour:min:sec are separated by '%7C'. precision is 'seconds. ends with 'Z'.
|
ab53_fKQ0R078m5Gr
|
[\w_]+
|
Value has word chars \w+ and punctuation marks '_', wich are kept and escaped.
|
2001%2410%2410T13%3B22%3B11.144Z
|
\d{4}%24\d{2}%24\d{2}T\d{2}%3B\d{2}%3B\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '%24'. 'T' splits date from time. hour:min:sec are separated by '%3B'. precision is 'milliseconds. ends with 'Z'.
|
1996-05-29T19:38:52.253Z
|
\d{4}\-\d{2}\-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds. ends with 'Z'.
|
2002-08-27T19:55:10
|
\d{4}\-\d{2}\-\d{2}T\d{2}:\d{2}:\d{2}
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'seconds.
|
qdW4C9Ep
|
\w+
|
Value is a word. \w+ accounts for similar alphanumeric data of different lengths.
|
2018%6006%6028T17:58:33
|
\d{4}%60\d{2}%60\d{2}T\d{2}:\d{2}:\d{2}
|
Value is an iso-date. year-month-day are separated by '%60'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'seconds.
|
2001$2402$2423T19$2357$2307Z
|
\d{4}\$24\d{2}\$24\d{2}T\d{2}\$23\d{2}\$23\d{2}Z
|
Value is an iso-date. year-month-day are separated by '$24'. 'T' splits date from time. hour:min:sec are separated by '$23'. precision is 'seconds. ends with 'Z'.
|
3IvPho5Ee$4/wi3499ZQO
|
[\w\$/]+
|
Value has word chars \w+ and punctuation marks '$', '/', wich are kept and escaped.
|
1997%5F06%5F06T20:07:59.551
|
\d{4}%5F\d{2}%5F\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}
|
Value is an iso-date. year-month-day are separated by '%5F'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds.
|
HdoReh>u
|
[\w>]+
|
Value has word chars \w+ and punctuation marks '>', wich are kept and escaped.
|
2006-07-21T22:07:54.315Z
|
\d{4}\-\d{2}\-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds. ends with 'Z'.
|
1998%2D06%2D14T17$7B51$7B03.829Z
|
\d{4}%2D\d{2}%2D\d{2}T\d{2}\$7B\d{2}\$7B\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '%2D'. 'T' splits date from time. hour:min:sec are separated by '$7B'. precision is 'milliseconds. ends with 'Z'.
|
XAqtPhyoDfwC_pwC=0r9}IC4gL_dJM]RMHWR
|
[\w=\}\]]+
|
Value has word chars \w+ and punctuation marks '=', '}', ']', wich are kept and escaped.
|
WRPEPZQv7sedO
|
\w+
|
Value is a word. \w+ accounts for similar alphanumeric data of different lengths.
|
2025-04-23 22$5C45$5C19.863Z
|
\d{4}\-\d{2}\-\d{2}\ \d{2}\$5C\d{2}\$5C\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. ' ' splits date from time. hour:min:sec are separated by '$5C'. precision is 'milliseconds. ends with 'Z'.
|
G4OVFym20BgevAid.qGDw
|
[\w\.]+
|
Value has word chars \w+ and punctuation marks '.', wich are kept and escaped.
|
2016$2407$2425T17:11:16.896Z
|
\d{4}\$24\d{2}\$24\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '$24'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds. ends with 'Z'.
|
2015-09-02+19$3D54$3D09.314Z
|
\d{4}\-\d{2}\-\d{2}\+\d{2}\$3D\d{2}\$3D\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. '+' splits date from time. hour:min:sec are separated by '$3D'. precision is 'milliseconds. ends with 'Z'.
|
2027$2311$2324T14$6002$6044.201Z
|
\d{4}\$23\d{2}\$23\d{2}T\d{2}\$60\d{2}\$60\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '$23'. 'T' splits date from time. hour:min:sec are separated by '$60'. precision is 'milliseconds. ends with 'Z'.
|
2023-02-16T09$3F13$3F30.305Z
|
\d{4}\-\d{2}\-\d{2}T\d{2}\$3F\d{2}\$3F\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by '$3F'. precision is 'milliseconds. ends with 'Z'.
|
NL3c4gS0Yb4GkD#heGwIIVQs1gQkT
|
[\w\#]+
|
Value has word chars \w+ and punctuation marks '#', wich are kept and escaped.
|
mfwxnUAxZY^ta
|
[\w\^]+
|
Value has word chars \w+ and punctuation marks '^', wich are kept and escaped.
|
zu4kAxaQpQU6
|
\w+
|
Value is a word. \w+ accounts for similar alphanumeric data of different lengths.
|
tsPxhAhzSMYNAm`VhQgm0OfDZCGSItR<4BDA7}bd44Ihu8o
|
[\w`<\}]+
|
Value has word chars \w+ and punctuation marks '`', '<', '}', wich are kept and escaped.
|
yw"IdBQaSgxrMHtj:ikC9KFQ6iEpWkyH`60T
|
[\w":`]+
|
Value has word chars \w+ and punctuation marks '"', ':', '`', wich are kept and escaped.
|
OyYvpEr@UvA48stRj3
|
[\w@]+
|
Value has word chars \w+ and punctuation marks '@', wich are kept and escaped.
|
A5umEVy@WMbog|Y7g1UbQg
|
[\w@\|]+
|
Value has word chars \w+ and punctuation marks '@', '|', wich are kept and escaped.
|
VIaKOFynWS_zKbZK
|
\w+
|
Value is a word. \w+ accounts for similar alphanumeric data of different lengths.
|
1999-10-13+08%2445%2435.952Z
|
\d{4}\-\d{2}\-\d{2}\+\d{2}%24\d{2}%24\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. '+' splits date from time. hour:min:sec are separated by '%24'. precision is 'milliseconds. ends with 'Z'.
|
z2qTKOhgc
|
\w+
|
Value is a word. \w+ accounts for similar alphanumeric data of different lengths.
|
2028%7E10%7E12+04:27:03.618Z
|
\d{4}%7E\d{2}%7E\d{2}\+\d{2}:\d{2}:\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '%7E'. '+' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds. ends with 'Z'.
|
XaAPIErSxVwjc(E$BTF6tbX#1nLSAb0ADnpqDS
|
[\w\(\$\#]+
|
Value has word chars \w+ and punctuation marks '(', '$', '#', wich are kept and escaped.
|
Aa$wXMCVP0sKrimedF~HGS7uUXAdnq84hL
|
[\w\$\~]+
|
Value has word chars \w+ and punctuation marks '$', '~', wich are kept and escaped.
|
2013%7B01%7B04+00$7D55$7D35
|
\d{4}%7B\d{2}%7B\d{2}\+\d{2}\$7D\d{2}\$7D\d{2}
|
Value is an iso-date. year-month-day are separated by '%7B'. '+' splits date from time. hour:min:sec are separated by '$7D'. precision is 'seconds.
|
2011$2E09$2E08T17$7E17$7E42.331Z
|
\d{4}\$2E\d{2}\$2E\d{2}T\d{2}\$7E\d{2}\$7E\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '$2E'. 'T' splits date from time. hour:min:sec are separated by '$7E'. precision is 'milliseconds. ends with 'Z'.
|
2005$3C10$3C18T06:00:54.645Z
|
\d{4}\$3C\d{2}\$3C\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '$3C'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds. ends with 'Z'.
|
0MKSJG7CXJZRj9!NuyBvewWSxJBTPt+83YwNP
|
[\w!\+]+
|
Value has word chars \w+ and punctuation marks '!', '+', wich are kept and escaped.
|
eANeyktHtHepqUM^Sig286fwRjyu|xin;kn
|
[\w\^\|;]+
|
Value has word chars \w+ and punctuation marks '^', '|', ';', wich are kept and escaped.
|
85258653425451
|
\d+
|
Value is a number. \d+ accounts for similar numeric data of different lengths.
|
DnCgSGJqSL#HeQ0C77Cbkb,fjFvesKbYOOTGx}eUmYnlkgxHpaFmG
|
[\w\#,\}]+
|
Value has word chars \w+ and punctuation marks '#', ',', '}', wich are kept and escaped.
|
998065992
|
\d+
|
Value is a number. \d+ accounts for similar numeric data of different lengths.
|
1996$2B03$2B13T19:50:45.038Z
|
\d{4}\$2B\d{2}\$2B\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '$2B'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds. ends with 'Z'.
|
1997$2410$2414+17%2D19%2D03.438Z
|
\d{4}\$24\d{2}\$24\d{2}\+\d{2}%2D\d{2}%2D\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '$24'. '+' splits date from time. hour:min:sec are separated by '%2D'. precision is 'milliseconds. ends with 'Z'.
|
HaiQyZx$CXs8szpk9cz_!hPX3Q7XiJ.PBmscABKnJa
|
[\w\$!\.]+
|
Value has word chars \w+ and punctuation marks '$', '!', '.', wich are kept and escaped.
|
1995-11-05T03%2541%2535.779
|
\d{4}\-\d{2}\-\d{2}T\d{2}%25\d{2}%25\d{2}\.\d{3}
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by '%25'. precision is 'milliseconds.
|
2004-08-10T00$6057$6008.907
|
\d{4}\-\d{2}\-\d{2}T\d{2}\$60\d{2}\$60\d{2}\.\d{3}
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by '$60'. precision is 'milliseconds.
|
2002-12-30 11:10:58.704
|
\d{4}\-\d{2}\-\d{2}\ \d{2}:\d{2}:\d{2}\.\d{3}
|
Value is an iso-date. year-month-day are separated by '-'. ' ' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds.
|
VquyB~Egp=O9nSzIULtg
|
[\w\~=]+
|
Value has word chars \w+ and punctuation marks '~', '=', wich are kept and escaped.
|
xufW,_T
|
[\w,]+
|
Value has word chars \w+ and punctuation marks ',', wich are kept and escaped.
|
1999-06-08 15:59:36.002Z
|
\d{4}\-\d{2}\-\d{2}\ \d{2}:\d{2}:\d{2}\.\d{3}Z
|
Value is an iso-date. year-month-day are separated by '-'. ' ' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds. ends with 'Z'.
|
2019-07-11+11%3A30%3A08
|
\d{4}\-\d{2}\-\d{2}\+\d{2}%3A\d{2}%3A\d{2}
|
Value is an iso-date. year-month-day are separated by '-'. '+' splits date from time. hour:min:sec are separated by '%3A'. precision is 'seconds.
|
498
|
\d+
|
Value is a number. \d+ accounts for similar numeric data of different lengths.
|
2027$2406$2427T06:06:59
|
\d{4}\$24\d{2}\$24\d{2}T\d{2}:\d{2}:\d{2}
|
Value is an iso-date. year-month-day are separated by '$24'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'seconds.
|
cqrswRAL#AQChR}OYh6jaSCH0
|
[\w\#\}]+
|
Value has word chars \w+ and punctuation marks '#', '}', wich are kept and escaped.
|
2011-04-26T03%7B34%7B01Z
|
\d{4}\-\d{2}\-\d{2}T\d{2}%7B\d{2}%7B\d{2}Z
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by '%7B'. precision is 'seconds. ends with 'Z'.
|
1997-04-22T21:32:39.295
|
\d{4}\-\d{2}\-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}
|
Value is an iso-date. year-month-day are separated by '-'. 'T' splits date from time. hour:min:sec are separated by ':'. precision is 'milliseconds.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.