我需要提取一个只包含单个或两个数字的字符串.我的文件(测试)看起来像
test1correct test12something test123wrong
在上面的例子中,我只想grep
test1correct和test12something
我试过这个
grep“test [0-9] {1,2}”测试,但它给了我所有的3行.
解决方法
使用:grep“test [0-9] {1,2} [^ 0-9]”