- Posted by
- UltraEdit has also on ribbon tab Edit in popup menu of item Insert item the command String at every increment which can be used to insert ^p (means carriage return + line feed) after every X characters of a file. It is of course also possible to use a Perl regular expression replace with search stri...Posted in UltraEdit General Discussion
-   Topics
-   Views
- Mofi
Aug 08, 2019
- You can use a script, for example: //query x and insert eol after each x bytes (in ascii file) if( UltraEdit.activeDocument.encoding == 0 ) { var len = UltraEdit.getValue("Number of bytes per line?",1); if( len > 1 ) { var eol = "\r\n"; switch( UltraEdit.activeDocument.lineTerminator )...Posted in UltraEdit General Discussion
-   Topics
-   Views
- bersch
Aug 08, 2019