正規表示式-Regex

    版本為 22:24, 20 Nov 2024

    到這個版本。

    返回到 版本存檔.

    查閱目前版本

    基本搜尋

    // 搜尋字串區分大小寫
    $ echo "This is a test" | sed -n '/test/p'
    
    $ echo "This is a test" | awk '/test/{print $0}'
    
    // 可以包含空白與數字
    $ echo "This is a test 2 again" | awk '/test 2/{print $0}' 
    

    特殊字元

    字元:.*[]^${}\+?|()

    $ cat myfile
    There is 10$ on my pocket
    
    $ awk '/\$/{print $0}' myfile
    
    $ echo "\ is a special character" | awk '/\\/{print $0}' 
    
    $ echo "This ^ is a test" | sed -n '/s ^/p'
    

    搜尋字首與字尾

    // 搜尋字首
    $ echo "likegeeks website" | awk '/^likegeeks/{print $0}'
    
    // 搜尋字尾
    $ echo "This is a test" | awk '/test$/{print $0}' 
    
    // 搜尋相同字元行的文字
    $ awk '/^this is a test$/{print $0}' myfile
    
    // 不顯示空白行
    $ awk '!/^$/{print $0}' myfile
    
    Powered by MindTouch Core