Updated Regular Expressions (markdown)

ksherlock 2022-11-02 12:29:49 -04:00
parent 4f541d4955
commit fdea458919

@ -17,5 +17,5 @@ expression !~ /regex/ not equivalent to regex
| * | * | Repeat 0 or more times |
| «*n*» | {*n*} | Repeat *n* times (also «*n*,*n*», «,*n*», «*n*,») |
| (...)®*n* | | Capture the expression in variable @*n* (where *n* is 0-9) |
| ®*n* | | Match previously captured variable. |
| ®*n* | | Match previously captured variable. (editor search/replace only)|