Tagged Questions
2
votes
2answers
65 views
Alternating chars and nested parenthesesin (e)grep
I'm looking for a regex that finds all words in a list that do not have characters next to each other that are the same. (this is an exercise)
So abcdef is printed, but aabcdef is not.
I tried both
...