Updated Regular Expressions (markdown)

ksherlock 2022-11-02 12:23:31 -04:00
parent 80f4714603
commit 4f541d4955

@ -9,8 +9,8 @@ expression !~ /regex/ not equivalent to regex
| ? | . | Match any character (except return) |
| ≈ | .* | Match 0 or more characters |
| ∂ | \ | Escape special character |
| • | ^ | Match beginning of line |
| ∞ | $ | Match end of line |
| • | ^ | Match beginning of line (editor search only)|
| ∞ | $ | Match end of line (editor search only)|
| [...] | [...] | Sets. Case-insensitive unless {CaseSensitive} variable is set to 1. ∂ / \ ' " [ ] require ∂ escaping. - must be first to be a literal character. |
| [¬...] | [^...] | Set negation |
| + | + | Repeat 1 or more times |