Comment on Omnomnom
Ephera@lemmy.ml 4 weeks 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 4 weeks ago
Or a[vocad]*s