首页 > 其他 > 详细

EmEditor的一个好用的正则替换功能

时间:2014-12-11 15:32:03      阅读:250      评论:0      收藏:0      [点我收藏+]

最近在编辑文本的时候用到了EmEditor的一个好用的正则替换功能。
即我想用搜索到内容的一部分来生成另一段文本。
例如客户提供给我一大堆MYSQL的建立主键的脚本,我想改成MSSQL的建立主键的脚本,这里就用到了这个功能。

--替换前:
ALTER TABLE  XXXX
ADD PRIMARY KEY PK_XXXX
(
 ID ASC
);
--替换后
ALTER TABLE XXXX
ADD CONSTRAINT PK_XXXX PRIMARY KEY CLUSTERED
(
 ID ASC
);
--当然直接删掉PK_XXXX也能符合MSSQL的语法,这里仅为了举例子.

这里可以使用
查找:
ADD PRIMARY KEY (.*)
替换为:
ADD CONSTRAINT \1 PRIMARY KEY CLUSTERED
具体规则可以参考EmEditor的正则表达式帮助文档:\1 - \9
Indicates a back reference - a back reference is a reference to a previous sub-expression that has already been matched. The reference is to what the sub-expression matched, not to the expression itself. A back reference consists of the escape character "\" followed by a digit "1" to "9", "\1" refers to the first sub-expression, "\2" to the second etc. For example, "(a)\1" would capture "a" as the first back reference and match any text "aa". Back references can also be used when using the Replace feature under the Search menu. Use regular expressions to locate a text pattern, and the matching text can be replaced by a specified back reference. For example, "(h)(e)" will find "he", and putting "\1" in the Replace With box will replace "he" with "h" whereas "\2\1" will replace "he" with "eh".

EmEditor的一个好用的正则替换功能

原文:http://www.cnblogs.com/ajiangg/p/4157615.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!