正则表达式备忘录-Regular Expressions Cheatsheet中文版
正则表达式备忘录
Regular Expressions Cheatsheet中文版
原文:https://www.maketecheasier.com/cheatsheet/regex/
测试文件a.txt |
0x1: If you work with text, you’ll appreciate how useful regular expressions are. 0x00001: Regular expressions are everywhere in Linux for searching through text right down to the character. 0x0000001: This Regular Expressions cheatsheet will be useful for people who simply need a little refresher from time to time. |
字符 |
描述 |
例子 |
|
. (点) |
任何单个字符,除了换行(\n) |
c.t 匹配 "cat", "cut" 或 "cot."。 '任意字符加im': [root@test: /tmp]# egrep '.im' a.txt who simply need a little refresher from time to time. |
|
* (星号) |
重复前一个表达式0或多次 |
12*3 匹配 "13", "123", "1223", "12223"。 与 . 合用代表任何字符。 m.*easier 匹配 "maketecheasier"。 'x加任意个0加1:' [root@test: /tmp]# egrep 'x0*1:' a.txt 0x1: 0x00001: 0x0000001: '任何包含f加任意字符加l' [root@test: /tmp]# egrep 'f.*l' a.txt how useful regular expressions are. will be useful for people |
|
+ (加号) |
重复前一个表达式1或多次 |
12+3 匹配 "123","1223","12223" 'x加至少一个0加1:' (比较上一个用*的) [root@test: /tmp]# egrep 'x0+1:' a.txt 0x00001: 0x0000001: |
|
? (问号) |
前一个字符可有可无 |
ma?ke 匹配 "make", "mke" '有n或无n加ee' [root@test: /tmp]# egrep 'n?ee' a.txt This Regular Expressions cheatsheet who simply need a little refresher |
|
^ (尖号) |
匹配字符串的开头 |
^he 匹配以he开头的 "hello", "hell", "help", "he is a boy" '以空格开头的行' [root@test: /tmp]# egrep '^ ' a.txt how useful regular expressions are. are everywhere in Linux for searching through text right down to the character. will be useful for people who simply need a little refresher from time to time. |
|
$ (美刀) |
匹配字符串的结尾 |
ed$ 匹配以ed结尾的 "acted", bed", "greed" '字母e结尾的行' [root@test: /tmp]# egrep 'e$' a.txt you’ll appreciate from time |
|
(...) (小括号) |
匹配字符组合 |
(ak) 匹配 "make", "take" '包含 it 的' [root@test: /tmp]# egrep '(it)' a.txt If you work with text, who simply need a little refresher |
|
{n} (大括号,n是大于0的整数) |
重复前一个字符n次,n>0 |
12{3}5 匹配 "12225" 'x加4个0加1' [root@test: /tmp]# egrep 'x0{4}1' a.txt 0x00001: |
|
[...] (中括号) |
匹配里面的任意一个字符 |
[abc] 匹配字符串"abc"中的"a","b" 或 "c" '所有包含v或b的' [root@test: /tmp]# egrep '[vb]' a.txt are everywhere in Linux will be useful |
|
[^...] |
匹配任意字符,除了里面定义的 |
a[^b]c 匹配 "aec", "acc", "adc", 但不匹配 "abc" 'f前面不能是空格或e' [root@test: /tmp]# egrep '[^ e]f' a.txt If you work with text, |
|
| (管道符) |
匹配管道符分隔的任一字符串 |
col(o|ou)r 匹配 "color", "colour" |
|
- (连字符) |
指定某个范围内的字符一般是[a-z],[A-Z],[1-9],[a-zA-Z1-9] |
a[a-z]c 匹配 "abc", "acc", "adc" |
|
\ (反斜线) |
转义符,将特殊符合转义为符号本身 |
a\*c 匹配 "a*c". |
|
\n, \r, \t |
代表 换行,回车,制表符 |
||
\b...\b |
匹配整个单词 |
\bTech\b 匹配 the word "Tech" in "Make Tech Easier". 找到单词time [root@test: /tmp]# egrep '\btime\b' a.txt from time to time. |
正则表达式备忘录-Regular Expressions Cheatsheet中文版的更多相关文章
- 正则表达式(Regular expressions)使用笔记
Regular expressions are a powerful language for matching text patterns. This page gives a basic intr ...
- [笔记] 精通正则表达式/Mastering Regular Expressions
/ 匹配<emphasis>这个tag标注的IP地址的RE:‘<emphasis>([0-9]+(\.[0-9]+){3})</emphasis>' / 锚定--a ...
- Regular Expressions all in one
Regular Expressions all in one Regular Expressions Cheatsheet https://developer.mozilla.org/en-US/do ...
- 自学Zabbix8.1 Regular expressions 正则表达式
点击返回:自学Zabbix之路 点击返回:自学Zabbix4.0之路 点击返回:自学zabbix集锦 自学Zabbix8.1 Regular expressions 正则表达式 1. 配置 点击Adm ...
- Python之Regular Expressions(正则表达式)
在编写处理字符串的程序或网页时,经常会有查找符合某些复杂规则的字符串的需要.正则表达式就是用于描述这些规则的工具.换句话说,正则表达式就是记录文本规则的代码. 很可能你使用过Windows/Dos下用 ...
- 转载:邮箱正则表达式Comparing E-mail Address Validating Regular Expressions
Comparing E-mail Address Validating Regular Expressions Updated: 2/3/2012 Summary This page compares ...
- Regular Expressions --正则表达式官方教程
http://docs.oracle.com/javase/tutorial/essential/regex/index.html This lesson explains how to use th ...
- Regular Expressions in Grep Command with 10 Examples --reference
Regular expressions are used to search and manipulate the text, based on the patterns. Most of the L ...
- Introducing Regular Expressions 学习笔记
Introducing Regular Expressions 读书笔记 工具: regexbuddy:http://download.csdn.net/tag/regexbuddy%E7%A0%B4 ...
随机推荐
- [POI2007]ZAP-Queries 数学
题目描述 Byteasar the Cryptographer works on breaking the code of BSA (Byteotian Security Agency). He ha ...
- [WebShow系列] 固定展示界面的现场调用
正在制作......,敬请期待. 固定展示界面的现场调用 现场管理员通过现场控制台可以控制主展示界面,实现 主题 所选选手展示 所选选手打分展示 排行展示 详情排行展示 柱状图展示 界面的展示切换外, ...
- java 实现在线阅读 .pdf
1.资源的本地地址 2.设置响应头 3.代码实现 @ResponseBody @RequestMapping(value = "/read") @ApiOperation(valu ...
- BCH code
简单介绍 若循环码的生成多项式具有如下形式\(g(x)=LCM[m_{1}(x),m_{3}(x)..m_{2t-1}(x)]\) 其中LCM表示最小公倍式,t为纠错个数,\(m_{i}(x)\)为素 ...
- C++_函数1-编程的基本模块函数
以下是<C++ Primer Plus>中第七章的内容: 使用C++函数的3个步骤: 提供函数定义 提供函数原型 调用函数 7.1.1 定义函数 函数分成两类:没有返回值的函数.有返回值的 ...
- vue-awesome-swiper 的 使用
1.确保 package.json文件中有 "vue-awesome-swiper": "^3.1.3",没有的话install下 2.在main.js配置 ...
- 基于pydpier爬取1药网(转载)
1.商品爬取 #!/usr/bin/env python # -*- encoding: utf-8 -*- # Created on 2019-02-02 08:59:40 # Project: o ...
- C++ GUI Qt4编程(07)-3.1menu
1. C++ GUI Qt4编程第三章,添加menu菜单. 2. mainwindow.h #ifndef MAINWINDOW_H #define MAINWINDOW_H #include < ...
- gulp打包css/image/Less/Sass
其他的和打包前一篇随笔(打包js) http://www.cnblogs.com/teersky/p/7251329.html 相同,本篇文章主要写gulpFile.js的配置: 安装CSS打包插件: ...
- 2019.03.27 读书笔记 关于GC垃圾回收
在介绍GC前,有必要对.net中CLR管理内存区域做简要介绍: 1. 堆栈:用于分配值类型实例.堆栈主要操作系统管理,而不受垃圾收集器的控制,当值类型实例所在方法结束时,其存储单位自动释放.栈的执行效 ...