Tagged Questions
21
votes
6answers
6k views
How do you match only valid roman numerals with a regular expression?
Thinking about my other problem, i decided I can't even create a regular expression that will match roman numerals (let alone a context-free grammar that will generate them)
The problem is matching ...
2
votes
2answers
62 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
...