From 768feb5ea289b09d9f097a106a37fbec203e7950 Mon Sep 17 00:00:00 2001 From: Ralf Koop Date: Tue, 29 Aug 2023 09:10:29 +0000 Subject: [PATCH] Update Regex.md --- Eingang/Regex.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Eingang/Regex.md b/Eingang/Regex.md index 02a2aae..b375dfc 100644 --- a/Eingang/Regex.md +++ b/Eingang/Regex.md @@ -1,3 +1,5 @@ +Title : Regex.md + ## Common operators To define patterns to match, you can use these common operators: @@ -97,4 +99,4 @@ To match a pattern based on the position of a character, use brackets **([...])* _Note: All characters within brackets are taken literally, and not as regex operators. For example, **[*\+?{}.]** matches any of the literal characters within the brackets._ ## Match unwanted characters ([^...]) -To match a pattern that does not contain characters, start the sequence with an **^** operator, and wrap it in brackets. For example, **%[^a-zA-z]%** matches a string with any non-letter character between two percent signs. \ No newline at end of file +To match a pattern that does not contain characters, start the sequence with an **^** operator, and wrap it in brackets. For example, **%[^a-zA-z]%** matches a string with any non-letter character between two percent signs.