zoukankan      html  css  js  c++  java
  • 3分钟搞定Linux系统正则表达式

    正则表达式是一种字符模式,用于在查找过程中匹配制定的字符。

    元字符通常在Linux中分为两类:Shell元字符,由Linux Shell进行解析;
    正则表达式元字符,由vi/grep/sed/awk等文本处理工具进行解析;
    正则表达式一般以文本行进行处理,在进行下面实例之前,先为grep命令设置--color参数:

     class="">$ alias grep='grep --color=auto'
    

    这样每次过滤出来的字符串都会带色彩了。

    在开始之前还需要做一件事情,就是创建一个测试用的re-file文件,内容如下:

     class="">$ cat re-file
    I had a lovely time on our little picnic.
    Lovers were all around us. It is springtime. Oh
    love, how much I adore you. Do you know
    the extent of my love? Oh, by the way, I think
    I lost my gloves somewhere out in that field of
    clover. Did you see them?  I can only hope love.
    is forever. I live for you. It's hard to get back in the
    groove.
     class="">$ cat linux.txt
    Linux is a good 
    god assdxw bcvnbvbjk
    greatttttt  wexcvxc
    operaaaating  dhfghfvx
    gooodfs awrerdxxhkl
    gdsystem awxxxx
    glad
    good
    
    正则表达式元字符

    教你3分钟搞定Linux正则表达式教你3分钟搞定Linux正则表达式

    特殊的元字符

    教你3分钟搞定Linux正则表达式教你3分钟搞定Linux正则表达式

    扩展的正则表达式

    教你3分钟搞定Linux正则表达式教你3分钟搞定Linux正则表达式

    实操
    匹配以love开头的所有行
     class="">$ grep '^love' re-file
    love, how much I adore you. Do you know
    
    匹配love结尾的所有行
     class="">$ grep 'love$' re-file
    clover. Did you see them?  I can only hope love.
    
    匹配以l开头,中间包含两个字符,结尾是e的所有行
     class="">$ grep 'l..e' re-file
    I had a lovely time on our little picnic.
    love, how much I adore you. Do you know
    the extent of my love? Oh, by the way, I think
    I lost my gloves somewhere out in that field of
    clover. Did you see them?  I can only hope love.
    is forever. I live for you. It's hard to get back in the
    
    匹配0个或多个空行,后面是love的字符
     class="">$ grep ' *love' re-file
    I had a lovely time on our little picnic.
    love, how much I adore you. Do you know
    the extent of my love? Oh, by the way, I think
    I lost my gloves somewhere out in that field of
    clover. Did you see them?  I can only hope love.
    
    匹配love或Love
     class="">$ grep '[Ll]ove' re-file  # 对l不区分大小写
    I had a lovely time on our little picnic.
    Lovers were all around us. It is springtime. Oh
    love, how much I adore you. Do you know
    the extent of my love? Oh, by the way, I think
    I lost my gloves somewhere out in that field of
    clover. Did you see them?  I can only hope love.
    
    匹配A-Z的字母,其次是ove
     class="">$ grep '[A-Z]ove' re-file
    Lovers were all around us. It is springtime. Oh
    
    匹配不在A-Z范围内的任何字符行,所有的小写字符
     class="">$ grep '[^A-Z]' re-file
    I had a lovely time on our little picnic.
    Lovers were all around us. It is springtime. Oh
    love, how much I adore you. Do you know
    the extent of my love? Oh, by the way, I think
    I lost my gloves somewhere out in that field of
    clover. Did you see them?  I can only hope love.
    is forever. I live for you. It's hard to get back in the
    groove.
    
    匹配love
     class="">$ grep 'love.' re-file
    clover. Did you see them?  I can only hope love.
    
    匹配空格
     class="">$ grep '^$' re-file
    
    匹配任意字符
    class="">$ grep '.*' re-file
    I had a lovely time on our little picnic.
    Lovers were all around us. It is springtime. Oh
    love, how much I adore you. Do you know
    the extent of my love? Oh, by the way, I think
    I lost my gloves somewhere out in that field of
    clover. Did you see them?  I can only hope love.
    is forever. I live for you. It's hard to get back in the
    groove.
    
    前面o字符重复2到4次
     class="">$ grep 'o{2,4}' re-file
    groove.
    
    重复o字符至少2次
     class="">$ grep 'o{2,}' re-file
    groove.
    
    重复0字符最多2次
     class="">$ grep 'o{,2}' re-file
    I had a lovely time on our little picnic.
    Lovers were all around us. It is springtime. Oh
    love, how much I adore you. Do you know
    the extent of my love? Oh, by the way, I think
    I lost my gloves somewhere out in that field of
    clover. Did you see them?  I can only hope love.
    is forever. I live for you. It's hard to get back in the
    groove.
    
    重复前一个字符一个或一个以上
     class="">$ egrep "go+d" linux.txt
    Linux is a good
    god assdxw bcvnbvbjk
    gooodfs awrerdxxhkl
    good
    #####0个或者一个字符
    ansheng@Ubuntu:/tmp$ egrep "go?d" linux.txt
    god assdxw bcvnbvbjk
    gdsystem awxxxx
    

    或,查找多个字符串

     class="">$ egrep "gd|good" linux.txt
    Linux is a good
    gdsystem awxxxx
    good
    
    分组过滤匹配
     class="">$ egrep "g(la|oo)d" linux.txt
    Linux is a good
    glad
    good
  • 相关阅读:
    网页元素居中的n种方法
    Swifter.Json 可能是 .Net 平台迄今为止性能最佳的 Json 序列化库【开源】
    .NET 欢乐编程术之类型超级转换之术👍👍
    C#.Net 使用 JsonReader/JsonWriter 高性能解析/生成 Json 文档
    UTF-16 -- 顶级程序员也会忽略的系统编码问题,JDK 错了十年!
    迄今为止 .Net 平台功能最强大,性能最佳的 JSON 序列化和反序列化库。
    并发系列(一)——线程池源码(ThreadPoolExecutor类)简析
    Flink源码阅读(一)——Per-job之Yarn的作业调度(一)
    阅读GitHub源码的正确打开方式
    安装Elasticsearch+Kibana【单节点、多ES实例】
  • 原文地址:https://www.cnblogs.com/linuxprobe/p/9880059.html
Copyright © 2011-2022 走看看