我可以在 emeditor 中模拟地在多选项卡中使用宏吗?
can i use a marco in multitab simulatensily in emeditor?
我已经完成了我的工作,
我的工作是打开多文件并使用它
现在,我使用这个 marco 一个文件到一个文件
我想在 emeditor 中打开多文件并模拟使用它
我该怎么做?
我的马哥是这样的
document.selection.SelectAll();
document.selection.EndOfdocument();
document.selection.Cut();
strFileName= document.Name;
document.selection.EndOfdocument();
document.selection.Text="strFileName" +"\t" + strFileName + "\n";
document.selection.Find("(?<=\x22title\x22:\x22)(.*)(?=\x22,\x22pubdate\x22)",eeFindSelectAll |eeFindReplaceRegExp,0);
str1 = document.selection.text;
document.selection.EndOfdocument();
document.selection.Delete();
//document.selection.text="hello,world\n"
document.selection.text="title:\t"+str1+"\n";
document.selection.Find("\x22page\x22:(\d+),\x22from\x22:\x22vupload\x22,\x22part\x22:\x22(.*?)\x22",eeFindSelectAll |eeFindReplaceRegExp,0);
document.selection.Copy();
document.selection.EndOfdocument();
document.selection.Paste();
您可以使用文件菜单中的高级打开命令。为此:
- 打开 EmEditor.
- 针对每个打开的文档选项设置运行宏。
- Select 或者输入你想要的宏路径 运行.
- 单击Select 个要打开的文件,然后单击select 个要打开的文件。
我已经完成了我的工作,
我的工作是打开多文件并使用它
现在,我使用这个 marco 一个文件到一个文件
我想在 emeditor 中打开多文件并模拟使用它
我该怎么做?
我的马哥是这样的
document.selection.SelectAll();
document.selection.EndOfdocument();
document.selection.Cut();
strFileName= document.Name;
document.selection.EndOfdocument();
document.selection.Text="strFileName" +"\t" + strFileName + "\n";
document.selection.Find("(?<=\x22title\x22:\x22)(.*)(?=\x22,\x22pubdate\x22)",eeFindSelectAll |eeFindReplaceRegExp,0);
str1 = document.selection.text;
document.selection.EndOfdocument();
document.selection.Delete();
//document.selection.text="hello,world\n"
document.selection.text="title:\t"+str1+"\n";
document.selection.Find("\x22page\x22:(\d+),\x22from\x22:\x22vupload\x22,\x22part\x22:\x22(.*?)\x22",eeFindSelectAll |eeFindReplaceRegExp,0);
document.selection.Copy();
document.selection.EndOfdocument();
document.selection.Paste();
您可以使用文件菜单中的高级打开命令。为此:
- 打开 EmEditor.
- 针对每个打开的文档选项设置运行宏。
- Select 或者输入你想要的宏路径 运行.
- 单击Select 个要打开的文件,然后单击select 个要打开的文件。