From 428d549b911c470d491b21d646c17f966e809359 Mon Sep 17 00:00:00 2001 From: AntonObersteiner Date: Wed, 5 Jun 2024 12:48:01 +0200 Subject: [PATCH] use '.*' instead of '.+' in tips --- generate.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/generate.py b/generate.py index d7ed699..c0a32b1 100755 --- a/generate.py +++ b/generate.py @@ -31,7 +31,7 @@ Vielleicht können Sie die ja mit regulären Ausdrücken filtern. Das funktioniert wie normale Text-Suche, nur etwas flexibler: (Erst|Zweit)versuch z.B. würde sowohl 'Erstversuch' als auch 'Zweitversuch' markieren. -.+ akzeptiert alle Zeichen, das können Sie an die 'Expression' +.* akzeptiert alle Zeichen, das können Sie an die 'Expression' (oben auf der Seite) vorn anfügen, um im Menü 'List' unten rechts den Anfang der Zeile zu sehen. Sie sollten etwa 5 Studierende finden. @@ -47,7 +47,7 @@ Maybe you can filter it with regular expressions? They are like normal text-search but more flexible: E.g.: (Erst|Zweit)versuch would select both words: 'Erstversuch' (first attempt) and 'Zweitversuch' (second attempt). -.+ will accept any text, you can add it at the start of the expression +.* will accept any text, you can add it at the start of the expression (top of page) to see the whole line in the menu 'List' (bottom right). You should find approximately 5 students. @@ -65,7 +65,7 @@ Vielleicht können Sie die ja mit regulären Ausdrücken filtern. Das funktioniert wie normale Text-Suche, nur etwas flexibler: (Erst|Zweit)versuch z.B. würde sowohl 'Erstversuch' als auch 'Zweitversuch' markieren. -.+ akzeptiert alle Zeichen, das können Sie an die 'Expression' +.* akzeptiert alle Zeichen, das können Sie an die 'Expression' (oben auf der Seite) vorn anfügen, um im Menü 'List' unten rechts den Anfang der Zeile zu sehen. Sie sollten etwa 5 Studierende finden. @@ -84,7 +84,7 @@ Maybe you can filter it with regular expressions? They are like normal text-search but more flexible: E.g.: /(first|second) attempt/ would select both: 'first attempt' and 'second attempt'. -.+ will accept any text, you can add it at the start of the expression +.* will accept any text, you can add it at the start of the expression (top of page) to see the whole line in the menu 'List' (bottom right). You should find approximately 5 students.