I’m attempting to use the find() function to locate characters in a string that repeat 4 or more times.
I’ve tried “[(\\w)\\1{4,}]” but it complains of an “Illegal/unsupported escape sequence near index 6”. Is there a problem with referencing subexpressions/groups? Any suggestions?