emeditor使用正则进行替换操作


文字替换需求如下:

pro_get_show->proGetShow

检索正则:(_[a-z]?)

替换的正则:\J "\0".toUpperCase().replace('_','')

以上利用了\j 的脚本功能。

参考网址:

http://www.emeditor.org/zh-cn/howto_search_search_regexp_syntax.html

http://www.emeditor.org/zh-cn/howto_search_replacement_expression_syntax.html