You must log in or register to comment.
What a weird way to spell and then censor ice cream.
Ais ais baby
That maight be it indeed.
Reminded me of the Ass Cream guy
Eating ass cuz you like the taste
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*s
as a glob pattern would match “avocados”.Or a[vocad]*s