| About Blog Cheatsheets Defense Links Offense |
RegEx
| Expression | Description |
| \ | Escape Character |
| \n | New Line |
| \r | Carriage Return |
| \t | Tabulator |
| \s | Space |
| \d | Digit |
| \w | Word |
| ^ | Start of line |
| $ | End of line |
| \xhh | Hexadezimal |
| [\b] | Backspace |
| \Oxxx | Octal |
| \a | Bell |
| \f | Form Feed |
| \e | Ascii Escape |
| \c | Control |
| \\ | Backslash |