Home | Features | Improve this section
A Character Class Escape is a single character escape that represents an entire character class. They can be used as an element of a Character Class or as an Atom. It is often the case that a lower-case escape character is the inclusive set, while an upper-case variant of the same character excludes that set.
SyntaxNOTE: The following syntax is an example based on some of the supported engines. For specific engine support, see Engines.
\d
— A decimal digit character in the range 0-9. Equivalent to [0-9]
.\D
— Any character not in the range 0-9. Equivalent to [^0-9]
.\w
— Any “word” character. Equivalent to [a-zA-Z0-9_]
.\W
— Any non-“word” character. Equivalent to [^a-zA-Z0-9_]
.\s
— Any whitespace character.\S
— Any non-whitespace character.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