Notepad++ 正则表达式替换 例子

前端之家收集整理的这篇文章主要介绍了Notepad++ 正则表达式替换 例子前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

例1:

\{和\}分别代表{和}

[^ \{\} ]匹配 除了 {和}之外的一个字符

* 尽可能多得匹配它前面的那种字符,至少匹配0个
+尽可能多得匹配它前面的那种字符,至少匹配1个


这样合起来: \{[^\{\}]*\}匹配最里层的花括号



例2:

\( \) 分别代表 ( 和 )

. 匹配任意一个字符


*?

Zero or more of the prevIoUs group,but minimally: the shortest matching string,rather than the longest string as with the "greedy"*operator. Thus,m.*?oapplied to the textmargin-bottom: 0;will matchmargin-bo,whereasm.*omargin-botto.

则 \(typedef_.*?; 匹配(一次匹配一个)

(typedef_XXXFunctionPtr)GetProcAddress(DllHandle,"XXXFunction");

(typedef_YYYFunctionPtr)GetProcAddress(DllHandle,"YYYFunction");

原文链接:https://www.f2er.com/regex/358526.html

猜你在找的正则表达式相关文章