shell grep 正则表达式小问题
[root@localhostregular_experssion_command]#cattestabc_def[root@localhostregular_exper...
[root@localhost regular_experssion_command]# cat test
abc_def
[root@localhost regular_experssion_command]# grep '[a-z]\{1,\}' test
abc_def
疑问:
'[a-z]\{1,\} 应该不包含下划线才对,为什么abc_def 还符合条件呢? 展开
abc_def
[root@localhost regular_experssion_command]# grep '[a-z]\{1,\}' test
abc_def
疑问:
'[a-z]\{1,\} 应该不包含下划线才对,为什么abc_def 还符合条件呢? 展开
2个回答
2013-09-19
展开全部
楼主你好!
grep 是用于寻找文件中的匹配指定的表达式的行,并把该行显示出来。
你所制定的表达式 [a-z]\{1,\},是匹配一个或一个以上的小写字母。
而该行abc_def中,符合该条件的有:
a, b, c, ab, bc, abc, d, e, f, de, ef, def
因此grep 会把该行的内容显示出来。
希望有所帮助。
grep 是用于寻找文件中的匹配指定的表达式的行,并把该行显示出来。
你所制定的表达式 [a-z]\{1,\},是匹配一个或一个以上的小写字母。
而该行abc_def中,符合该条件的有:
a, b, c, ab, bc, abc, d, e, f, de, ef, def
因此grep 会把该行的内容显示出来。
希望有所帮助。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询