Source insight 4.0 Regular expression Replace
程序员文章站
2022-05-31 08:09:25
...
某些嵌入式C语言开发使用宏比较多,包括数组的生成。此时如果仅看代码,很难看出程序的逻辑,这时需要对宏进行手动展开
这里就用到了source insight的高级替换功能
(.*)是一个组合,使用这个组合则用\1
如果有宏定义
#define BSM_STATE_SIMPLE_BEGIN(name, parent_state, entry_action, exit_action) \
static const BSM_TRANSITION_T name##_TRANSITION_TABLE[] = {
我们要对这个宏进行手动展开,在Replace页面输入
old:
BSM_STATE_SIMPLE_BEGIN\((.*), (.*), (.*), (.*)\) \\
new:
static const BSM_TRANSITION_T \1_TRANSITION_TABLE[] = {
这样对需要的进行替换,另外针对替换里的设置还需要更改,具体如下:
1. 勾选“Use Regular Expressions"
2. Regular Expression Syntax选择”Perl Compatable“
推荐阅读
-
解决source insight 4.0 不识别.cc文件的问题
-
Linux开发准备:Ubuntu14.04+Samba+MobaXterm+Source Insight 4.0
-
Source Insight 4.0最新许可安装使用教程+中文乱码方法(附下载)
-
Source Insight 4.0取消Overviews预览
-
source insight 4.0 中文乱码解决
-
Source Insight4.0 中文注释为乱码解决办法
-
Source insight 4.0 Regular expression Replace
-
Ubuntu 1804 安装 Source Insight4.0
-
解决source insight 4.0 不识别.cc文件的问题
-
Linux开发准备:Ubuntu14.04+Samba+MobaXterm+Source Insight 4.0