Answered
InDesign, how to express the search for duplicate regular expressions?
For example: AAA, ABBC, YeeS, Rigth, Wrong, English, THANKS
I want to find a word where a character reappears.
Can AAA, ABBC or YeeS be found with an expression?
For example: AAA, ABBC, YeeS, Rigth, Wrong, English, THANKS
I want to find a word where a character reappears.
Can AAA, ABBC or YeeS be found with an expression?
Does the following work
(.)\1+
Or if you porbably want to find the whole word where the repeated characters are present the following should work
\w*(.)\1+\w*
-Manan
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.