diff --git a/Regular-Expressions.md b/Regular-Expressions.md index fcd2144..608497b 100644 --- a/Regular-Expressions.md +++ b/Regular-Expressions.md @@ -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 |