From 2097a3c53275d247900f7b14d1b739d17f5b98c4 Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Tue, 27 Aug 2019 18:07:01 +0200 Subject: [PATCH] Updated Request Matching (markdown) --- Request-Matching.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Request-Matching.md b/Request-Matching.md index df44efd..e877aee 100644 --- a/Request-Matching.md +++ b/Request-Matching.md @@ -393,7 +393,7 @@ Will match xml below: ``` -### Regular Expression Matching +### Regular Expression Matching (RegexMatcher) The RegexMatcher can be used to match using a regular expression. ```csharp @@ -414,7 +414,7 @@ Hello World Hi WM ``` -### Similarity Metric Matching +### Similarity Metric Matching (SimMetricsMatcher) [SimMetrics.Net](https://github.com/StefH/SimMetrics.Net) is used as a Similarity Metric Library, e.g. from edit distance's (Levenshtein, Gotoh, Jaro etc) to other metrics, (e.g Soundex, Chapman). ```csharp @@ -437,7 +437,7 @@ Hello ``` -### WildcardMatching +### WildcardMatching (WildcardMatch) WildcardMatching is mostly used for Path and Url matching. This matcher allows a ? for a single character and * for any characters. ```csharp @@ -449,7 +449,7 @@ server ``` // matching -Url like /somebody and /someting +Url like /somebody and /something ``` ### Reversing the match behaviour with `MatchBehaviour.RejectOnMatch`