Text extracted via Screen Scraping one word per line - how to make it normal?

Dear colleagues,

I am following the PDF automation course from Academy and I use Screen Scraping to extract a paragraph from the REFramework manual.

However I get one word per line (please see the output from screenshot).
What String manipulation is the best practice to turn it into normal text?

I tried String.Join, but it didn’t work:

Did you tried Scrapping with FullText mode?

The problem is more in the EOL in your text. Please try the following:

System.Text.RegularExpressions.Regex.Replace(readTextPDF_SS, "\s+", " ")