According to my question
Is it possible in EmEditor to display the number of filtered results sets (could be equal to number of lines, if not using the Begin-/Endfilter) in the status bar of EmEditor; i found no options in the settings?
According to my question
Is it possible in EmEditor to display the number of filtered results sets (could be equal to number of lines, if not using the Begin-/Endfilter) in the status bar of EmEditor; i found no options in the settings?
过滤后,如何使用Count Matches选项搜索结束过滤器?
如果您使用宏,我会将该Find
行添加到上一个宏的最后一行。您可以改用此宏:
filters = document.filters;
filters.Clear();
filters.AddFind( "|Column1", eeFindReplaceCase, eeExFilterBegin );
filters.AddFind( "| Number of Records:", eeFindReplaceCase, eeExFilterEnd );
document.filters = filters;
document.selection.Find( "| Number of Records: ", eeFindCount | eeFindReplaceCase );
您可以在打开数据文件后运行此宏。为此,请将此代码另存为,例如,Filter.jsee
然后从宏菜单中的选择...中选择此文件。最后,打开您的数据文件,并在数据文件处于活动状态时选择宏菜单中的运行。
在运行此宏之前,请取消选择“自定义”对话框的“状态”页面中的“显示执行时间”选项。