Checked the regex in an online checker, it works there as it should. Not working though, what am i missing? It should echo, if you type 8 words back to back, but for some reason it isn't.
on *:text:*:#: {
if ($regex($1-,/(\S+\s*)\1{7,}/i)) {
echo -a Matched Successfully
}
}
Thanks!