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`