From a6135c08f5ef97eb78a939949dafbc14a9893156 Mon Sep 17 00:00:00 2001 From: "monada-bot[bot]" Date: Wed, 10 Apr 2024 19:52:21 +0000 Subject: [PATCH] chore: self mutation (build.diff) Signed-off-by: monada-bot[bot] --- docs/docs/04-standard-library/std/regex.md | 25 ---------------------- 1 file changed, 25 deletions(-) diff --git a/docs/docs/04-standard-library/std/regex.md b/docs/docs/04-standard-library/std/regex.md index cc4d7a86c44..ae5c2e4e486 100644 --- a/docs/docs/04-standard-library/std/regex.md +++ b/docs/docs/04-standard-library/std/regex.md @@ -174,7 +174,6 @@ The text to check against. | **Name** | **Description** | | --- | --- | | compile | Compiles the provided regex pattern into a `Regex` object. | -| match | Checks whether a given string matches a specified regex pattern. | --- @@ -194,30 +193,6 @@ The regex pattern to compile. --- -##### `match` - -```wing -regex.match(pattern: str, text: str); -``` - -Checks whether a given string matches a specified regex pattern. - -###### `pattern`Required - -- *Type:* str - -The regex pattern to match against. - ---- - -###### `text`Required - -- *Type:* str - -The input string to check for a match. - ---- -