From 80f47146031e62112423f7593fc48b829fe53f1a Mon Sep 17 00:00:00 2001 From: ksherlock Date: Wed, 2 Nov 2022 10:48:40 -0400 Subject: [PATCH] Updated Regular Expressions (markdown) --- Regular-Expressions.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Regular-Expressions.md b/Regular-Expressions.md index b771898..fcd2144 100644 --- a/Regular-Expressions.md +++ b/Regular-Expressions.md @@ -1,3 +1,9 @@ +Evaluate and If commands. + +expression =~ /regex/ equivalent to regex + +expression !~ /regex/ not equivalent to regex + | MPW | Standard | Comments | | --------------- | --------------- | --------------- | | ? | . | Match any character (except return) | @@ -13,6 +19,3 @@ | (...)®*n* | | Capture the expression in variable @*n* (where *n* is 0-9) | | ®*n* | | Match previously captured variable. | -/ regular expression / - search forward - -\ regular expression \ - search backward