grep 的常用元字元
Metacharacter | Function | Example | What It Matches |
---|---|---|---|
^ | Beginning-of-line anchor | '^love' | Matches all lines beginning with love. |
$ | End-of-line anchor | 'love$' | Matches all lines ending with love. |
. | Matches one character | 'l..e' | Matches lines containing an l, followed by two characters, followed by an e. |
* | Matches zero or more characters preceding the asterisk | ' *love' | Matches lines with zero or more spaces, followed by the pattern love. |
[ ] | Matches one character in the set | '[Ll]ove' | Matches lines containing love or Love. |
[^] | Matches one character not in the set | '[^A–K]ove' | Matches lines not containing a character in the range A through K, followed by ove. |
< | Beginning-of-word anchor | ' | Matches lines containing a word that begins with love. |
> | End-of-word anchor | 'love>' | Matches lines containing a word that ends with love. |
(..) | Tags matched characters | '(love)ing' | Tags marked portion in a register to be remembered later as number 1. To reference later, use 1 to repeat the pattern. May use up to nine tags, starting with the first tag at the leftmost part of the pattern. For example, the pattern love is saved in register 1 to be referenced later as 1. |
x{m} x{m,} x{m,n}[a] | Repetition of character x: m times, at least m times, or between m and n times | 'o{5}' 'o{5,}' 'o{5,10}' | Matches if line has 5 occurences of o, at least 5 occurences of o, or between 5 and 10 occurrences of |
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8730/viewspace-1034283/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 正規表示式中常用的元字元字元
- Shell字元操作命令——grep、sed、awk字元
- 【Shell】grep命令在結果集中顯示綠色的字元字元
- 正則-元字元字元
- Linux 常用基本命令 cat grepLinux
- Linux 中grep命令如何匹配中文字元Linux字元
- 正規表示式元字元與普通字元字元
- Linux常用命令記錄-grepLinux
- Linux常用指令---grep(搜尋過濾)Linux
- Markdown常用轉義字元字元
- 正規表示式 ^元字元字元
- 正規表示式 $ 元字元字元
- 正規表示式元字元字元
- Markdown 常用需轉義字元字元
- 常用字元ASCII值字元ASCII
- linux中強大且常用命令:find、grepLinux
- 【Shell】【經驗】awk sed grep find sort常用配搭用法
- Linux Shell 萬用字元、元字元、轉義符使用Linux字元
- 正規表示式 \v 元字元字元
- 正規表示式 \f 元字元字元
- 正規表示式 \B 元字元字元
- 正規表示式 \xnn元字元字元
- 正規表示式 \b元字元字元
- 正規表示式 \D 元字元字元
- 正規表示式 \s 元字元字元
- 正規表示式 \r 元字元字元
- 正規表示式 \n 元字元字元
- 正規表示式 \W元字元字元
- 正規表示式 \w 元字元字元
- 正規表示式 \d元字元字元
- 正規表示式 \t元字元字元
- 正規表示式 \0元字元字元
- 正規表示式 點(.)元字元字元
- 正規表示式 \t 元字元字元
- 正規表示式[\b]元字元字元
- 15個Linux Grep命令使用例項(實用、常用)Linux
- grep 命令系列:grep 中的正規表示式
- 幾個常用的文字處理shell 命令:find、grep、sort、uniq、sed、awk