Comment on Omnomnom

<- View Parent
Ephera@lemmy.ml ⁨1⁩ ⁨week⁩ ago

In 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”.

source
Sort:hotnewtop