Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
The reference tables. The reader will come back to scan these.
.
\d
\D
\w
\W
\s
\S
[abc]
[^abc]
[a-z]
*
+
?
{n}
{n,}
{n,m}
*?
+?
??
^
m
$
\b
\B
a|b
(...)
(?:...)
(?<name>...)
;; Match a date: YYYY-MM-DD (bind date-pattern (regex "^(\\d{4})-(\\d{2})-(\\d{2})$")) ;; Match an email (simple) (bind email-pattern (regex "^\\S+@\\S+\\.\\S+$")) ;; Match a hex color (bind hex-color (regex "^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$"))