- Posted by
- Thank you so much again, Mofi! :thumbsup:Posted in Find/Replace/Regular Expressions
-   Topics
-   Views
- Ovg
Dec 16, 2020
1 Like recived
- 1. Make copy of your data 2. Find what: \d+\K(\d\d) 3. Replace with: .\1 4. Mark Regular expressions: and choose Perl 5. Mark Replace all is from top of file (if needed) 6. Click Replace allPosted in Find/Replace/Regular Expressions
-   Topics
-   Views
- Ovg
Dec 13, 2020
1 Like recived
- It seems that record length means line length + length of lines delimiter (2 for DOS and 1 for Mac/Unix) Mac.PNG Mac1.PNG Dos.PNG dos1.PNGPosted in UltraEdit General Discussion
-   Topics
-   Views
- Ovg
Dec 06, 2020
1 Like recived
- You can write you suggestion directly to IDM .... (support@idmcomp.com)Posted in Configuration/INI Settings
-   Topics
-   Views
- Ovg
Nov 14, 2020
1 Like recived
- UE has a similar feature: You can add chm file or URL address with Help->Add help files , later you can select text and invoke it via F1->Your CHM File/URL Address .Posted in Configuration/INI Settings
-   Topics
-   Views
- Ovg
Nov 14, 2020
1 Like recived
- Help -> Add help files , click Add Google Select text, click Help -> Google SearchPosted in Configuration/INI Settings
-   Topics
-   Views
- Ovg
Jul 31, 2020
1 Like recived
- 1. Find what: ([[:upper:]]) or (?-i)([A-Z]) or (?-i)(\p{Lu}) Replace with: $1 (There is space before $) 2. Find what: [[:upper:]][[:lower:]]* or (?-i)\p{Lu}\p{Ll}* or (?-i)[A-Z][a-z]* See also Perl Regular Expression Syntax .Posted in Find/Replace/Regular Expressions
-   Topics
-   Views
- Ovg
Jan 30, 2019
2 Like recived
- Something like Perl RegExp: ^\r\n|\r\n(?![\w\W])Posted in Find/Replace/Regular Expressions
-   Topics
-   Views
- Ovg
Aug 04, 2018
1 Like recived
- Find what: (?<=loadURI\(").*(?=&) Check Highlight all items found Check Regular expression and choose Perl Press Next. Press Ctrl + , (Convert Highlighted to selection command) Now you can copy selected to new file via Copy/Paste HTHPosted in Find/Replace/Regular Expressions
-   Topics
-   Views
- Ovg
Apr 29, 2018
1 Like recived
- 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
1 Like recived
- Search->Replace. Find what: (?<=Item.,)(\d\d)/\d\d(/\d\d\d\d) Replace with: \1\2 Regular Expressions: Perl Check Replace all from top of file Click replace allPosted in Find/Replace/Regular Expressions
-   Topics
-   Views
- Ovg
Jan 04, 2018
1 Like recived