|
本帖最后由 zhouxl2000 于 2013-4-15 16:33 编辑
4# zhouxl2000
试了好多次,还是不行,可能是我操作有误。
麻烦能不能截屏图片显示一下操作过程?
谢谢!
tchon 发表于 2013-4-13 09:43
sorry,前面的替代有点问题,将后面的1也包括到单词中。
emeditor可以录制宏,将宏代码保存为test.jsee;
执行时: 宏--选择test.jsee--运行
宏代码:- document.selection.Replace("\\n","", eeReplaceAll | eeFindReplaceRegExp);
- document.selection.Replace("</>","\\n</>\\n", eeReplaceAll | eeFindReplaceRegExp);
- document.selection.Replace("^([^\\d]+)(\\d.*?)~(.*)$","\\1\\2\\1\\3",eeReplaceAll | eeFindReplaceRegExp);
- document.selection.Replace("^([^\\d]+)(\\d.*?)~(.*)$","\\1\\2\\1\\3",eeReplaceAll | eeFindReplaceRegExp);
- document.selection.Replace("^([^\\d]+)(\\d.*?)~(.*)$","\\1\\2\\1\\3",eeReplaceAll | eeFindReplaceRegExp);
- document.selection.Replace("^([^\\d]+)(\\d.*)$","\\1\\n\\2",eeReplaceAll | eeFindReplaceRegExp);
- document.selection.Replace("<br>","<br>\\n",eeReplaceAll | eeFindReplaceRegExp);
复制代码 执行宏后:
- </>
- book
- 1 (C)<br>
- a. 书,书籍; 著作<br>
- read [write] a book<br>
- 读 [著] 书<br>
- → closed book,open book.<br>
- b. 知识 [教训] 的泉源, (…之) 书<br>
- the book of Nature <br>
- 自然之书<br>
- </>
- bag
- 1 (C)<br>
- a. 袋<br>
- a paper bag <br>
- 纸袋<br>
- → carry bag,doggie bag,tote bag.<br>
- b. 猎物袋<br>
- 2 (C)<br>
- a. 提袋; 旅行袋,提包<br>
- a traveling bag <br>
- 旅行袋<br>
- </>
- P.S.我还想将例句的英文和中文摆在同一行,不过可能难度很高?例如:a paper ~ <br>
- 纸袋<br>
- 改为a paper bag 纸袋<br>
复制代码 |
|