From 07f2a5d728b32fb31f2052bff8cea1b344bbe599 Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Tue, 5 Sep 2023 15:31:38 +0200 Subject: [PATCH] add link to metasyntactic --- Tasks.md | 15 ++++++++------- data/metasyntactic.md | 3 +++ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Tasks.md b/Tasks.md index ff6c801..a45369f 100644 --- a/Tasks.md +++ b/Tasks.md @@ -238,11 +238,11 @@ Difficulty: 2/5 Text The text is large, read it [here](data/metasyntactic.md) and find the raw text for your program -[here](). +[here](https://git.cscherr.de/PlexSheep/py-basic/raw/branch/master/data/metasyntactic.md). -1. Use a regular expression (regex) to find all instances of a uppercase character with a +1. Use a regular expression (regex) to find all instances of a lowercase character with a following vowel character, in which no 'x', z' or 'y' follows the vowel in the given Text. It is not allowed to store the text in a variable, you must load it from an outside source, such as a file. @@ -251,11 +251,12 @@ Examples: | Original | is Match? | |----------|-----------| -| Foo | yes | -| Baz | no | -| Qux | no | -| foo | no | -| BAR | yes | +| foo | yes | +| baz | no | +| qux | no | +| Foo | no | +| bAR | yes | +| far | yes | A hint that you don't want to miss: use [regex101.com](https://regex101.com) if you are not already a REGEX expert. diff --git a/data/metasyntactic.md b/data/metasyntactic.md index d9cd321..081a6db 100644 --- a/data/metasyntactic.md +++ b/data/metasyntactic.md @@ -1,3 +1,6 @@ +Note: This is the Wikipedia page for metasyntactic variables in English, 2023-09-05. Find the +up to date original [here](https://en.wikipedia.org/wiki/Metasyntactic_variable). + # Metasyntactic variable ## Tools