([\da-zA-Z]"{1}")(\1[\da-zA-Z]{3})
The above regex will match when a character is repeated 5 times or more in sucsession. eg.
Hellooooo
Or at least it will in regexbuddy and in a quick test in mirc but when i try to use the same as a regexp it matches when there are 2 or more so Hello
Any help appreciated.
** [EDIT]
On further testing looks like my regex was wrong to start with hehe and the eggdrop was doing what it was told.
if you hadnt already guessed im new to regex
([\da-zA-Z]{1})(\1{3,}) <--- is the one im trying now