use '.*' instead of '.+' in tips

This commit is contained in:
AntonObersteiner 2024-06-05 12:48:01 +02:00
parent c6d2415271
commit 428d549b91

View file

@ -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: Das funktioniert wie normale Text-Suche, nur etwas flexibler:
(Erst|Zweit)versuch z.B. würde sowohl 'Erstversuch' (Erst|Zweit)versuch z.B. würde sowohl 'Erstversuch'
als auch 'Zweitversuch' markieren. 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, (oben auf der Seite) vorn anfügen,
um im Menü 'List' unten rechts den Anfang der Zeile zu sehen. um im Menü 'List' unten rechts den Anfang der Zeile zu sehen.
Sie sollten etwa 5 Studierende finden. 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: They are like normal text-search but more flexible:
E.g.: (Erst|Zweit)versuch would select both words: E.g.: (Erst|Zweit)versuch would select both words:
'Erstversuch' (first attempt) and 'Zweitversuch' (second attempt). '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). (top of page) to see the whole line in the menu 'List' (bottom right).
You should find approximately 5 students. 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: Das funktioniert wie normale Text-Suche, nur etwas flexibler:
(Erst|Zweit)versuch z.B. würde sowohl 'Erstversuch' (Erst|Zweit)versuch z.B. würde sowohl 'Erstversuch'
als auch 'Zweitversuch' markieren. 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, (oben auf der Seite) vorn anfügen,
um im Menü 'List' unten rechts den Anfang der Zeile zu sehen. um im Menü 'List' unten rechts den Anfang der Zeile zu sehen.
Sie sollten etwa 5 Studierende finden. 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: They are like normal text-search but more flexible:
E.g.: /(first|second) attempt/ would select both: E.g.: /(first|second) attempt/ would select both:
'first attempt' and 'second attempt'. '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). (top of page) to see the whole line in the menu 'List' (bottom right).
You should find approximately 5 students. You should find approximately 5 students.