博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
正则学习笔记
阅读量:5967 次
发布时间:2019-06-19

本文共 1280 字,大约阅读时间需要 4 分钟。

[toc]

定义

简单的来说就是用在字符串的处理上面的一项表达式。

基础表达式

<font color=red>注意:</font>不同的环境语系会导致不同选取结果,这里以LANG=C为例子。

常用特殊符号:

特殊符号 代表意义
[:alnum:] 代表英文大小写字符以及数字
[:digit:] 代表数字
[:alpha:] 代表英文大小写
[:blank:] 代表空格键和tab键
[:lower:] 代表小写字符
[:upper:] 代表大写字符
[:xdigit:] 代表十六进制的数字类型
这里的可以用[a-z],[0-9]替代

基础命令

grep - [acinv]
i:不区分大小写
n:列出行号
v:取反操作
c:计算找到字符串的次数
a:将binary文件以text文件的方式查找数据
为方便下面的操作,我们需将系统环境设置为LANG=C,以及在~/.bashrc内加入alias grep='grep -color=auto',最后source ~/.bashrc即可。
Of course you can use command to get this file.

wget http://linux.vbird.org/linux_basic/0330regularex/regular_express.tx

And you can see what's inside by using cat command

➜  Desktop cat regular_express.txt "Open Source" is a good mechanism to develop programs.apple is my favorite food.Football game is not use feet only.this dress doesn't fit me.However, this dress is about $ 3183 dollars.GNU is free air not free beer.Her hair is very beauty.I can't finish the test.Oh! The soup taste good.motorcycle is cheap than car.This window is clear.the symbol '*' is represented as start.Oh!    My god!The gd software is a library for drafting programs.You are the best is mean you are the no. 1.The world 
is the same with "glad".I like dog.google is the best tools for search keyword.goooooogle yes!go! go! Let's go.# I am VBird

转载地址:http://cxtax.baihongyu.com/

你可能感兴趣的文章
Python访问PostGIS(建表、空间索引、分区表)
查看>>
quick-cocos2d-x开发环境Lua for IntelliJ IDEA的安装
查看>>
Target-Action回调模式
查看>>
换个红圈1微信头像恶搞一下好友
查看>>
Socket网络编程--简单Web服务器(3)
查看>>
ylbtech_dbs_article_五大主流数据库模型
查看>>
Java并发专题 带返回结果的批量任务运行 CompletionService ExecutorService.invokeAll
查看>>
10行Python代码解决约瑟夫环(模拟)
查看>>
一个简单好用的日志框架NLog
查看>>
超级硬盘数据恢复软件 4.6.5.0注冊码破解版
查看>>
一款基于jquery和css3实现的摩天轮式分享按钮
查看>>
Android创建启动画面
查看>>
Linux中date命令的各种实用方法--转载
查看>>
mysqld -install命令时出现install/remove of the service denied错误的原因和解决办法
查看>>
苹果企业版帐号申请记录
查看>>
C++ Error: error LNK2019: unresolved external symbol
查看>>
Bitmap 和Drawable 的区别
查看>>
Java操作mongoDB2.6的常见API使用方法
查看>>
如何给服务器设置邮件警报。
查看>>
CEF js调用C#封装类含注释
查看>>