我需要提取仅包含一个或两位数数字的字符串。我的文件(测试)看起来像test1correct test12something test123wrong 在上面的例子中,我只想greptest1正确和test12something我试过了grep“test [0-9] {1,2}”测试,但是它给了我全部3行。 最佳答案 使用:grep "test[0-9]{1,2}[^0-9]“