当前位置:网站首页>notepad++正則錶達式替換字符串
notepad++正則錶達式替換字符串
2022-07-06 00:15:00 【1390811049】
注意:Notepad++正則錶達式字符串最長不能超過69個字符
錶達式 說明
/t 制錶符.
/n 新行.
. 匹配任意字符.
| 匹配錶達式左邊和右邊的字符. 例如, "ab|bc" 匹配 "ab" 或者 "bc".
[] 匹配列錶之中的任何單個字符. 例如, "[ab]" 匹配 "a" 或者 "b". "[0-9]" 匹配任意數字.
[^] 匹配列錶之外的任何單個字符. 例如, "[^ab]" 匹配 "a" 和 "b" 以外的字符. "[^0-9]" 匹配任意非數字字符.
* 其左邊的字符被匹配任意次(0次,或者多次). 例如 "be*" 匹配 "b", "be" 或者 "bee".
+ 其左邊的字符被匹配至少一次(1次,或者多次). 例如 "be+" 匹配 "be" 或者 "bee" 但是不匹配 "b".
? 其左邊的字符被匹配0次或者1次. 例如 "be?" 匹配 "b" 或者 "be" 但是不匹配 "bee".
^ 其右邊的錶達式被匹配在一行的開始. 例如 "^A" 僅僅匹配以 "A" 開頭的行.
$ 其左邊的錶達式被匹配在一行的結尾. 例如 "e$" 僅僅匹配以 "e" 結尾的行.
() 影響錶達式匹配的順序,並且用作錶達式的分組標記.
/ 轉義字符. 如果你要使用 "/" 本身, 則應該使用 "//".
包含“hello word”的行
^.hello word.$
以“hello word”開始的行
^hello word.*$
以“hello word”結尾的行
.*hello word$
搜索結果處理
Line 8: </item><item> <word>social media</word>
Line 15: </item><item> <word>constant</word>
Line 24: </item><item> <word>row</word>
Line 33: </item><item> <word>approach</word>
Line 41: </item><item> <word>exam</word>
Line 48: </item><item> <word>alarm</word>
Line 56: </item><item> <word>obviously</word>
Line 63: </item><item> <word>urgently</word>
去除前面的 Line
^.*Line.*:
边栏推荐
- Permission problem: source bash_ profile permission denied
- There is no network after configuring the agent by capturing packets with Fiddler mobile phones
- Configuring OSPF load sharing for Huawei devices
- FFMPEG关键结构体——AVFormatContext
- STM32 configuration after chip replacement and possible errors
- QT QPushButton details
- Global and Chinese market of water heater expansion tank 2022-2028: Research Report on technology, participants, trends, market size and share
- [designmode] Decorator Pattern
- Learn PWN from CTF wiki - ret2libc1
- Global and Chinese markets for hinged watertight doors 2022-2028: Research Report on technology, participants, trends, market size and share
猜你喜欢
剖面测量之提取剖面数据
STM32 configuration after chip replacement and possible errors
[designmode] composite mode
About the slmgr command
亲测可用fiddler手机抓包配置代理后没有网络
Upgrade openssl-1.1.1p for openssl-1.0.2k
notepad++正则表达式替换字符串
FFT 学习笔记(自认为详细)
Single merchant v4.4 has the same original intention and strength!
选择致敬持续奋斗背后的精神——对话威尔价值观【第四期】
随机推荐
Key structure of ffmpeg - avformatcontext
[designmode] composite mode
行列式学习笔记(一)
XML配置文件(DTD详细讲解)
MySql——CRUD
权限问题:source .bash_profile permission denied
Doppler effect (Doppler shift)
LeetCode 8. String conversion integer (ATOI)
妙才周刊 - 8
【QT】Qt使用QJson生成json文件并保存
【NOI模拟赛】Anaid 的树(莫比乌斯反演,指数型生成函数,埃氏筛,虚树)
关于slmgr命令的那些事
Problem solving win10 quickly open ipynb file
MySQL functions
什么叫做信息安全?包含哪些内容?与网络安全有什么区别?
There is no network after configuring the agent by capturing packets with Fiddler mobile phones
Single merchant v4.4 has the same original intention and strength!
[gym 102832h] [template] combination lock (bipartite game)
2022.7.5-----leetcode.729
[binary search tree] add, delete, modify and query function code implementation