Understanding RegEx with Notepad++ 正则表达式
Searching a string using the ‘Find‘ or ‘Find & Replace‘ function in text editors highlights the relevant match (e.g. searching ‘le‘ highlights it inside words such as ‘apple‘, ‘please’ etc). However, some advanced editors such as Notepad++ (I mention Notepad++ in my examples since its my favourite so far!) supports the use of regex, which recently saved me hours of manually replacing strings and numeric values in files containing HTML and JacaScript codes.
Regex characters can be used to create advanced matching criteria. The following table introduces some of them with practical examples. But before starting make sure that you change the Search Mode from Normal to Regular expression in your Find or Find & Replace dialogue box.
- [ ]
The square brackets can be used to match ONE of multiple characters. For instance, [abc] matches any of the characters a, b or c. Hence, b[eo]n will match words like ben and bon, but not been or beon. Ranges can also be used, [a-z] is any lower case character and so on.
- ^
The caret can be used inside the square brackets to exclude characters from the match. For instance, hell[^o] means the string ‘hell’ will be ignored if followed by the letter ‘o’. Another example is [^A-Za-z] which will exclude all alphabetic characters.
However, if not placed inside a set, ^ can be used to matches the start of a line.
- $
This matches the end of a line.
- .
The period or dot matches any character.
- \d
Matches any single digit.
- \w
Matches any single alphanumeric characters or underscore.
- \s
Matches whitespaces including tabs and line breaks.
- *
The asterisk or star sign matches 0 or more times. For example, Ba*m matches Bm , Bam , Baam etc.
- +
The plus sign matches 1 or more times. For example, lo+l matches lol , lool , loool etc.
- \<
Matches the start of a word. For example, \< directly followed by 'sh' matches 'she' but does not matches 'wish'.
- \>
Matches the end of a word. For example, sh\> matches ‘wish’ and does not matches ‘she’.
- ( )
The round brackets can be used in the Find & Replace function to tag a match. tagged matches can then be used in replace with \1, \2 etc.
For example, If you write 123xxxRRR in the search and 123\1HHH in the ‘Replace with’ filed, the result will be: 123xxxHHH.
- \
The backslash can be used to escape regex characters. For example to match 1+1=2, the correct regex is 1\+1=2. Otherwise, the plus sign will have a special meaning.
Further, the following two examples should be giving you a better idea of how to use regex in your editor:
- Find: Win([0-9]+) Replace with: Windows\1
Will search for strings like Win2000, Win2003 and changes them to Windows2000, Windows2003…
- Find: [a-z]+(\d\d)\> Replace with: Windows\1
Will search for all alphanumerics followed by 2 digits only at the end such as Win98 and Win07 and changes them to Windows98, Windows07…
http://blog.hakzone.info/posts-and-articles/editors/understanding-regex-with-notepad/comment-page-1/
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
2015-06-15 ImportError: No module named argparse
2011-06-15 PDF and CDF
2011-06-15 Generalized Pareto Distribution (GPD)
2011-06-15 一些统计学英文书籍下载
2011-06-15 极值理论(Extreme Value Theory)方面的书籍
2011-06-15 极值理论(Extreme Value Theory)