in reply to RegEx for the same character repeating N times

/(\w)\1{9,}/ should do the trick.

Hope this helps, -gjb-

Update: Sorry, forgot about the "or more", so added the ','.

Replies are listed 'Best First'.
Re: Re: RegEx for the same character repeating N times
by Anonymous Monk on Dec 31, 2002 at 18:26 UTC
    Thank you. That works.