using System.Text.RegularExpressions;
public static void Main()
string input = @"** 2019-10-09 00:01:00,051 - [ 41] [RD281878EEF7D9] **
Application_Type => 'Infolex'
Infolex_Enviroment_Cookie => 'uk.infolexnube.es'
Host_Url_Redirect => 'https://uk.infolexnube.es:443/iflx/content/themes/base/images/page-leftwing-bottom.gif'
Request_URL => '(GET)13.94.214.240 westeur-iflx-shar-rter-pro-app.azurewebsites.net/iflx/content/themes/base/images/page-leftwing-bottom.gif'
Proxy Exception - Error code: 10060
Proxy Exception - HttpRequestException
** 2019-10-09 00:05:02,538 - [ 71] [RD281878EEF7D9] **
Application_Type => 'Infolex'
Infolex_Enviroment_Cookie => 'uk.infolexnube.es'
Host_Url_Redirect => 'https://uk.infolexnube.es:443/iflx/content/themes/base/images/page-content-bottom.gif'
Request_URL => '(GET)13.94.214.240 westeur-iflx-shar-rter-pro-app.azurewebsites.net/iflx/content/themes/base/images/page-content-bottom.gif'
Proxy Exception - Error code: 10060
Proxy Exception - HttpRequestException";
var items = Regex.Split(input, "\\r?\\n\\r?\\n");
Console.WriteLine($"items: {items.Length}");
foreach (var item in items)
Console.WriteLine("==============================");