Shell三剑客:正则表达式(元字符)——示例
2023-12-14 23:42:24
- grep love 1.txt
- /^love/
- /love$/
- /l.ve/
- /lo*ve/
- /[Ll]ove/
- /love[a-z]/
- /love[^a-zA-Z0-9]
- /.*/
- /^$/
- /^[A-Z]..$"/
- /^[A-Z][a-z]*3[0-5]/
- /[a-z]*\."/
- /^*[A-Z][a-z][a-z]$"/
- /^*[A-Za-z]*[^,][A-Za-z]*$/
- /\<fourth\>/
- /\<f.*th\> /
- /5{2}2{3}\./
- /^[\t]*$/
- /^#/
- /^[\t]*#/
- :1,$ s/\([Oo]ccur\)ence/\1rence/?
- :1,$ s /\(square\) and \(fair\)/\2 and \1/?
[root@localhost ~]# grep "^$" 1.txt
[root@localhost ~]# grep ".*" 1.txt
#qian
#yoa
#huang
kai
kong
cai
[root@localhost ~]# grep "^$" 1.txt
[root@localhost ~]# grep "[A-Z]..$" 1.txt
[root@localhost ~]# grep "[^A-Z]..$" 1.txt
#qian
#yoa
#huang
kai
kong
cai
duo
[root@localhost ~]# grep "^[A-Z]..$" 1.txt
[root@localhost ~]# grep "^[A-Z][a-z]*3[0-5]" 1.txt
[root@localhost ~]# grep "[a-z]*\." 1.txt
l.ve
[root@localhost ~]# grep "^*[A-Z][a-z][a-z]$" 1.txt
[root@localhost ~]# grep "^*[A-Za-z]*[^,][A-Za-z]*$" 1.txt
[root@localhost ~]# grep "\<fourth\>" 1.txt
[root@localhost ~]# grep \<fourth\> 1.txt
[root@localhost ~]# grep \<f.*th\> 1.txt
[root@localhost ~]# grep "5{2}2{3}\." 1.txt
[root@localhost ~]# grep "^[\t]*$" 1.txt
[root@localhost ~]# grep "^#" 1.txt
#qian
#yoa
#huang
[root@localhost ~]# grep "^[\t]*#" 1.txt
#qian
#yoa
#huang
:1,$ s/\([Oo]ccur\)ence/\1rence/
:1,$ s /\(square\) and \(fair\)/\2 and \1/
?
?
?
?
文章来源:https://blog.csdn.net/weixin_73783595/article/details/135005734
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!