Lisp und Scheme

This commit is contained in:
2026-09-13 13:50:16 +02:00
parent 5a732b5490
commit 12515fe2eb
7 changed files with 263 additions and 61 deletions
+1 -5
View File
@@ -18,13 +18,9 @@ A regular expression specifies a set of strings that matches it. This cheat shee
​
`*?` Matches 0 or more repetitions of the preceding RE.
+ Greedily matches 1 or more repetitions of the preceding RE.
+ Greedily matches 1 or more repetitions of the preceding RE.
+? Matches 1 or more repetitions of the preceding RE.
? Greedily matches 0 or 1 repetitions of the preceding RE.