\b\d{4}-\d{2}-\d{2}\b
g
Agenda items due by 2025-05-12. Previous deadline was 1999-12-31.
[\w.+-]+@[\w.-]+\.[A-Za-z]{2,}
gi
Contact Support@nGene.org for assistance.
Token | Description |
---|---|
. | Any character except newline |
\d | Digit 0‑9 |
\w | Word character |
\s | Whitespace |
[abc] | a, b or c |
[^abc] | Not a, b or c |
* | 0 or more |
+ | 1 or more |
? | 0 or 1 |
{m,n} | Range quantifier |
^ | Start anchor |
$ | End anchor |
(…) | Capturing group |
(?:…) | Non‑capturing group |
| | Alternation |
Flag | Purpose |
---|---|
g | Global – find every match |
i | Ignore case |
m | Multiline anchors |
s | Dotall – . matches newline |
u | Unicode mode |
y | Sticky – start at lastIndex |
https://platform.openai.com/
, sign up or log in, and complete any verification.$ export OPENAI_API_KEY="sk-…"
PS> setx OPENAI_API_KEY "sk-…"
curl
(or any SDK):curl https://api.openai.com/v1/models \ -H "Authorization: Bearer $OPENAI_API_KEY"A JSON list of models confirms the key works.