- Posted by
- Hi, maybe this Perl regex will work for you. I know it is not the optimal one - Quick'n'Dirty (tm) :) Name CG\$AN(?s:.*?)^\K[ \t*]+hint\b.*$ Use Find in Files, check Result to edit window ON, show 0 lines before and 0 lines after. The result will need some p...Posted in Find/Replace/Regular Expressions
-   Topics
-   Views
- fleggy
May 10, 2019
- I suggest an enhanced version of the script. Read the comments for details. var asFileNames = []; for (var nDocIndex=0; nDocIndex < UltraEdit.document.length; nDocIndex++) { // Is the current document window for a file with a name or at least // with a file extension like .htaccess and not a new...Posted in Scripts
-   Topics
-   Views
- Mofi
Feb 15, 2018
- Something like this? var n = UltraEdit.document.length var files = ""; for (i=0;i<n;i++) { files = files + '"'+UltraEdit.document[i].path + '"'+";" } files = files.substr(files,files.length-1).replace(/;/g,"\r\n"); UltraEdit.newFile(); UltraEdit.activeDocument.write(files);Posted in Scripts
-   Topics
-   Views
- Ovg
Feb 14, 2018