Stamets@lemmy.dbzer0.com to Memes@sopuli.xyz · 1 month agoOmnomnomlemmy.dbzer0.comimagemessage-square14linkfedilinkarrow-up1164arrow-down123
arrow-up1141arrow-down1imageOmnomnomlemmy.dbzer0.comStamets@lemmy.dbzer0.com to Memes@sopuli.xyz · 1 month agomessage-square14linkfedilink
minus-squareWildmimic@anarchist.nexuslinkfedilinkEnglisharrow-up10arrow-down1·1 month agoan asterisk in regular expressions indicates an arbitrary amount of characters, so its probably avocados
minus-squareEphera@lemmy.mllinkfedilinkEnglisharrow-up9·edit-21 month agoIn regular expressions, it would match “aaaaaaaas”, since the character before the asterisk is what needs to be repeated. To match “avocados”, the pattern would be a.*s (or a\w*s). Or alternatively, a*s as a glob pattern would match “avocados”.
an asterisk in regular expressions indicates an arbitrary amount of characters, so its probably avocados
In regular expressions, it would match “aaaaaaaas”, since the character before the asterisk is what needs to be repeated. To match “avocados”, the pattern would be
a.*s(ora\w*s).Or alternatively,
a*sas a glob pattern would match “avocados”.Or a[vocad]*s