If you have PowerShell v3 try this one-liner:
(Get-Content file.txt -Raw) -replace '(?<=\w{16}\s).+' -replace '(?<= ) |\r?\n\s+'
3
solved How to format unstrctured text file?
If you have PowerShell v3 try this one-liner:
(Get-Content file.txt -Raw) -replace '(?<=\w{16}\s).+' -replace '(?<= ) |\r?\n\s+'
3
solved How to format unstrctured text file?