1
[独家发布][V1.0正式版]Codepool代码替换软件柯柯大侠荣誉出品
使用方法特别简单,但是功能真的很强大
这是我一直在寻找的软件
无论在哪,只要能输入
[C++] [color=rgb(51, 102, 153) !important]纯文本查看 [color=rgb(51, 102, 153) !important]复制代码
[color=white !important][color=white !important]?
自定义字符可以是 字母 标点符号
用
[C++] [color=rgb(51, 102, 153) !important]纯文本查看 [color=rgb(51, 102, 153) !important]复制代码
[color=white !important][color=white !important]?
替换掉
[C++] [color=rgb(51, 102, 153) !important]纯文本查看 [color=rgb(51, 102, 153) !important]复制代码
[color=white !important][color=white !important]?
| /*
*********************************************************************************************************
* 函 数 名:
* 功能说明:
* 形 参:
* 返 回 值:
*********************************************************************************************************
*/
|
为广大程序员节省大量时间
所有功能完全自定义!!!
正式版新功能:
1. ###日期###,###时间### 会编译成当前日期和时间
打开软件添加 .zs,添加以下代码,并保存。
[C++] [color=rgb(51, 102, 153) !important]纯文本查看 [color=rgb(51, 102, 153) !important]复制代码
[color=white !important][color=white !important]?
| ////////////////////////////////////////////////////////////////////////
//创建者:柯柯
//功能:
//参数:
//返回:
//时间:###日期### ###时间###
////////////////////////////////////////////////////////////////////////
|
在任意输入框,输入[C++] [color=rgb(51, 102, 153) !important]纯文本查看 [color=rgb(51, 102, 153) !important]复制代码
[color=white !important][color=white !important]?
将会替换成以下内容:
[C++] [color=rgb(51, 102, 153) !important]纯文本查看 [color=rgb(51, 102, 153) !important]复制代码
[color=white !important][color=white !important]?
| ////////////////////////////////////////////////////////////////////////
//创建者:柯柯
//功能:
//参数:
//返回:
//时间:2016:06:12 13:58:36
////////////////////////////////////////////////////////////////////////
|
2. //$0到//$9 被复制后,按下Ctrl不放,可多次按下 "V”,会被直接替换成数字,随着粘贴次数递增。
[C++] [color=rgb(51, 102, 153) !important]纯文本查看 [color=rgb(51, 102, 153) !important]复制代码
[color=white !important][color=white !important]?
复制以上代码,按住“Ctrl”连续按"V"粘贴3次,输出以下结果:
[C++] [color=rgb(51, 102, 153) !important]纯文本查看 [color=rgb(51, 102, 153) !important]复制代码
[color=white !important][color=white !important]?
| a[0]=x[1];
a[1]=x[2];
a[2]=x[3];
|
3. 代码容量由2K升级为100K
4.支持Lua脚本运行
输入:
[Visual Basic] [color=rgb(51, 102, 153) !important]纯文本查看 [color=rgb(51, 102, 153) !important]复制代码
[color=white !important][color=white !important]?
| //###lua###
for a=1,10 do
Print("第"..a.."行");
end
|
复制以上代码粘贴,将替换为以下内容:
[C++] [color=rgb(51, 102, 153) !important]纯文本查看 [color=rgb(51, 102, 153) !important]复制代码
[color=white !important][color=white !important]?
01
02
03
04
05
06
07
08
09
10
| 第1行
第2行
第3行
第4行
第5行
第6行
第7行
第8行
第9行
第10行
|
|
|