How to replace new line with white space in text documents

37 views (last 30 days)
Hello,I am trying to change all new lines in my database with white space,but codes does not work.can any one help me please.Data base is attached.
test1 = fileread('part1.txt');
newTest = sprintf(strrep(test1, '\n', ' '))

Accepted Answer

Stephen23
Stephen23 on 31 Jan 2016
Edited: Stephen23 on 31 Jan 2016
str = regexprep(test1,'\s+',' ');
or
str = regexprep(test1,'[\n\r]+',' ')

More Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!