我需要提取仅包含一个或两位数数字的字符串。我的文件(测试)看起来像

test1correct
test12something
test123wrong

在上面的例子中,我只想grep
test1正确和test12something

我试过了
grep“test [0-9] {1,2}”测试,但是它给了我全部3行。

最佳答案

使用:grep "test[0-9]{1,2}[^0-9]

09-20 06:51