I need help coming up with a regular expression to match if a string has more than one occurrence of character. I already validated the length of the two strings and they will always be equal. Heres what i mean, for example. The string "aab" and "abb". These two should match the regular expression because they have repeating characters, the "aa" in the first string and the "bb" in the second.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Since you say "aba"-style repetition doesn't count, back-references should make this simple:
Would find sequences of characters. Try it out:
|
|||||||||||||
|
|
If you're checking anagrams maybe a different algorithm would be better. If you sort your strings (both the original and the candidate), checking for anagrams can be done with a string comparison. |
|||
|
|
abaqualify? – Lazer Aug 28 '10 at 21:13perlhas nothing to do with this question, I removed theperltag. If you really need to have it in, then please elaborate the reasoning for adding theperltag. – BalusC Aug 28 '10 at 21:55