([a-zA-Z0-3])\1{2,}
i found that this regex is allowing 3 continuous characters and i want to revert the result. so i tries this
(?!([a-zA-Z0-3])\1{2,}) {not giving correct result}
?!([a-zA-Z0-3])\1{2,} {giving invalid regex error}
what's the correct solution