From 6d71a8c0d910497003e4f4f645706588e0be2455 Mon Sep 17 00:00:00 2001 From: 2NuFyeat4PZt <40205164+2NuFyeat4PZt@users.noreply.github.com> Date: Fri, 7 Feb 2020 13:41:47 +0000 Subject: [PATCH] Update concepts-filters.md Provide a working example for the ~m filter --- docs/src/content/concepts-filters.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/src/content/concepts-filters.md b/docs/src/content/concepts-filters.md index f0b9a4b2d..b9c894567 100644 --- a/docs/src/content/concepts-filters.md +++ b/docs/src/content/concepts-filters.md @@ -49,3 +49,8 @@ Requests whose body contains the string "test": Anything but requests with a text/html content type: !(~q & ~t "text/html") + +Replace entire GET string in a request (quotes required to make it work): + + ":~q ~m GET:.*:/replacement.html" +