Comment on Omnomnom
Ephera@lemmy.ml 1 week agoIn regular expressions, it would match “aaaaaaaas”, since character before the asterisk needs to be repeated. To match “avocados”, the pattern would need to be a.*s
(or a\w*s
).
Or alternatively, a*s
as a glob pattern would match “avocados”.
30p87@feddit.org 1 week ago
Or a[vocad]*s