[Solved] How to remove unknown line break (special character) in text file?


The character you have in your file is the form-feed character usually used as control character for a page break.

In UltraEdit in Page Setup configuration dialog (a printing related dialog) there is the option Page break code which has by default the decimal value 12 (hexadecimal 0C) which is the form-feed character.

A page break can be displayed in UltraEdit with a horizontal line across the document window on enabling Show Page Breaks as Lines in menu/ribbon View.

The form-feed character can be removed in UltraEdit with searching for ^b on using a normal, non regular expression or an UltraEdit regular expression replace, or with searching for \f on using a Unix or Perl regular expression replace.

In VB.Net code ChrW(12) can be used to reference the form-feed control character as suggested already by Hans Passant.

0

solved How to remove unknown line break (special character) in text file?