Despite attempts to master grep and related GNU software, I haven\'t come close to mastering regular expressions. I do like them, but I find them a bit of an eyesore all the sam
.{9,} for "more than eight", .{8,} for "eight or more" Or just len(w) > 8
.{9,}
.{8,}
len(w) > 8