001、测试数据
[root@pc1 test]# ls a.txt [root@pc1 test]# cat a.txt 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 13783120433 16 17 18 19 20 21 22 23 24 25 24332233443 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 [root@pc1 test]# grep -E "1[3456789][0-9]{9}" a.txt ## 配置第一个数字为1,第二个数字为3-9中的任意一个,其后为0到9的数字中的任意9个 11 12 13 14 15 13783120433
。
标签:13783120433,grep,正则表达式,pc1,linux,test,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/17924108.html