Home | Features | Improve this section
A Character Class is an Atom that specifies a set of characters to match a single character in the set.
SyntaxNOTE: The following syntax is an example based on some of the supported engines. For specific engine support, see Engines.
[…]
— Where …
is one or more single characters or character class escapes, excluding ^
at the start and -
between two entries in the set. Matches a character in the set. Example: [abc]
matches a
, b
, or c
.[^…]
— Where …
is one or more single characters or character class escapes, excluding -
between two entries in the set. Matches any character not in the set. Example: [^abc]
matches d
, e
, or f
, etc., but not a
, b
, or c
.[a-z]
— Where a and z are single characters or character escapes. Matches any character in the range between a and z (inclusive). Example: [a-c]
matches a
, b
, or c
, but not d
.RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4