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.
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…