A friend asked me this and I was stumped: Is there a way to craft a regular expression that matches a sequence of the same character? E.g., match on 'aaa', 'bbb', but not 'abc'?
m|\w{2,3}| wouldn't do the trick as it would match 'abc'.
m|a{2,3}| wouldn't do the trick as it wouldn't match 'bbb', 'ccc', etc.