File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1039,7 +1039,7 @@ $ grep -n 'the' regular_express.txt
1039
1039
18:google is the best tools for search keyword
1040
1040
```
1041
1041
1042
- 示例:正则表达式 a{m,n} 用来匹配字符 a m\~ n 次,这里需要将 { 和 } 进行转移 ,因为它们在 shell 是有特殊意义的。
1042
+ 示例:正则表达式 a{m,n} 用来匹配字符 a m\~ n 次,这里需要将 { 和 } 进行转义 ,因为它们在 shell 是有特殊意义的。
1043
1043
1044
1044
``` html
1045
1045
$ grep -n 'a\{2,5\}' regular_express.txt
Original file line number Diff line number Diff line change @@ -1039,7 +1039,7 @@ $ grep -n 'the' regular_express.txt
1039
1039
18:google is the best tools for search keyword
1040
1040
```
1041
1041
1042
- 示例:正则表达式 a{m,n} 用来匹配字符 a m\~ n 次,这里需要将 { 和 } 进行转移 ,因为它们在 shell 是有特殊意义的。
1042
+ 示例:正则表达式 a{m,n} 用来匹配字符 a m\~ n 次,这里需要将 { 和 } 进行转义 ,因为它们在 shell 是有特殊意义的。
1043
1043
1044
1044
``` html
1045
1045
$ grep -n 'a\{2,5\}' regular_express.txt
You can’t perform that action at this time.
0 commit comments